The UpdateValueEvent property of the RadMaskedTextBox allows you to specify when the Value property will be changed. If UpdateValueEvent is set to PropertyChanged, the Value will be changed on every key stroke, assuming that you are typing. If the UpdateValueEvent is set to LostFocus, the Value will be changed only after the RadMaskedTextBox loses focus.
CopyXAML
<telerik:RadMaskedTextBox x:Name="radMaskedTextBox"
Mask="c3"
MaskType="Numeric"
UpdateValueEvent="LostFocus" />
<telerik:RadMaskedTextBox x:Name="radMaskedTextBox2"
Mask="c3"
MaskType="Numeric"
UpdateValueEvent="PropertyChanged" /> Tip |
|---|
| The default value of the RadMaskedTextBox's UpdateValueEvent property is UpdateValueEvent.PropertyChanged. |
See Also