Hi, I'm trying to bind a MaskedTextBox width a string, but I I do:
<xceed:MaskedTextBox Value="{Binding Path=Factura, Mode=TwoWay}" ValueDataType="{x:Type s:String}" Mask=">L-0000-00000000" />
The control do not set the changes in the model.
And if I do
<xceed:MaskedTextBox Text="{Binding Path=Factura,
Mode=TwoWay}" ValueDataType="{x:Type s:String}"
Mask=">L-0000-00000000" />
The model gets a masked value.
How must I do it?