[DevExpress Support Team: CLONED FROM T933922: DevExpress WinForms Cheat Sheet - Input Masks]
We've just upgraded to 20.2 and our existing Mask properties don't work very well. Many don't work at all and we now get a underscore place holder where we neither want it nor asked for it. It seems we have to go through each control and adjust any existing Mask properties. Is this true? Did we miss something in the documentation that might help save us some time?
Hello,
In v20.2, we enhanced our masking mechanism. However, these are internal changes, which should not affect editors that use a public API. So, to give you a precise answer as to why this issue occurs, we need to reproduce it on our side. Would you please send us a small sample demonstrating the issue? We will focus on the problematic behavior and will do our best to find a suitable solution faster.
Hello Alexey,
l am sorry, we do not have the time to put together a sample. We simply upgraded from 20.1.8 to 20.2.3 with no changes to the development environment nor to the code base post-upgrade.
Windows 10 64-bit
Visual Studio 2019
Winforms
MVVM Framework
Upgrade path from 20.1.8 to 20.2.3
Attached is one of the many offending user controls.
Hello,
Thank you for your files. We analyzed them and reproduced this behavior on our side. Now, we are working on this issue and once we obtain any results, we will notify you.
As a workaround, I recommend you replace the following line
this.txtFirstName.Properties.Mask.EditMask = "(\\p{Lu}|\\p{Z}|\\-)+";
with this
this.txtFirstName.Properties.Mask.EditMask = "((\\p{Lu}|\\p{Z}|\\-)+)?";
In other words, all you need is to wrap your current mask to brackets - (mask)?.
Additionally, I noticed that you are using individual bindings for your FirstName and LastName TextEditors:
I would like to note that it is not necessary to additionally create such an individual binding when using data-bindings.
Should you have additional questions, let me know.
The reason for the bindings is to give the ViewModel a chance to react to changes to data. For example, in an editor's EditValue:
// ViewModel public virtual string FirstName { get; set; } public void OnFirstNameChanged() { this.RaiseCanExecuteChanged(x => x.Accept()); }
Is there an alternative method that does not require the use of individual bindings in the View?
Hello,
In order not to mix several questions in one thread, I have created a separate ticket on your behalf (T944883: MVVM - How to update ViewModel properties once a user changes values in corresponding bound TextEditors). It has been placed in our processing queue and will be answered shortly.