
Hello,
I have the following xaml. If I enter and amount say, 100.00 and then tab away and enter some other values. Then come back to this field and click the delete button the value is not bound back to the binding source. This causes the original value to be saved even though the user has deleted the value from the text doubleEditBox. Is there something I can do to make sure the binding is updated when the delete button is pressed?
I have the following xaml. If I enter and amount say, 100.00 and then tab away and enter some other values. Then come back to this field and click the delete button the value is not bound back to the binding source. This causes the original value to be saved even though the user has deleted the value from the text doubleEditBox. Is there something I can do to make sure the binding is updated when the delete button is pressed?
<Editors:DoubleEditBox Grid.Row="0"
Grid.Column="1"
Name="tbAmount"
Format="C"
Minimum="0"
Maximum="9999999.99"
PartValueCommitTriggers="StringValueChange"
IsFocusMovedOnTerminalMatches="True"
IsNullAllowed="False"
Value="{Binding Path=ActivityRate.RateAmount, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" />