In WPF textbox, is it possible to get Editing Started and Editing Completed event?
Asked
Active
Viewed 8,958 times
2 Answers
1
Please have a look at this link and see if it helps.
TextBox.TextChanged & ICommandSource
The basics here are through binding yes. 1 way is to bind to an objects property which implements INotifyPropertyChanged. You are actually responding to the property changing rather than the text box.
-
Look into two way binding. That's really where you will see the benefit of this. – Matt Jan 23 '12 at 18:40