[DevExpress Support Team: CLONED FROM T943854: Masks do not work starting with v.20.2]
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:
C#// 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?