WPF Textbox changing validation
Here's how to ensure that databinding happens when the value of a textbox changes. (as opposed to losing focus for example)
<TextBox Text="{Binding Interval, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />Here's how to ensure that databinding happens when the value of a textbox changes. (as opposed to losing focus for example)
<TextBox Text="{Binding Interval, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />