Currently I bind to my TextBox
es as:
Text="{Binding DocValue,
Mode=TwoWay,
ValidatesOnDataErrors=True,
UpdateSourceTrigger=PropertyChanged}"
This works great in getting every keystroke to do button status checking (which I want).
In addition, I would like to track the LostFocus
event on the TextBox
(through binding) and do some additional calculations that might be too intensive for each keystroke.
Anyone have thoughts on how to accomplish both?