I have a textbox bound to a property. The property continously gets updated from a timer. What I’m trying to do is to make it so that when I’m in the middle of typing something in the textbox, the textbox should stop updating itself from the property. Is there a way to do that?
Thanks!
I’m not a WPF or databinding expert, so there may be a better way, but I’d say you’ll have to handle the GotFocus and LostFocus events and add/remove the databinding in those event handlers.