How to bind a WinForm textbox to update on TextChanged instead of LostFocus

Posted by Bill on Stack Overflow See other posts from Stack Overflow or by Bill
Published on 2009-09-01T03:36:43Z Indexed on 2010/04/17 13:23 UTC
Read the original article Hit count: 264

Filed under:
|
|

I am binding a textbox to a property on an object, and would like the property to be updated on the TextChanged event and not the default LostFocus event. How would this be done?

It would be nice if there was a property on the Binding object to designate which event should be used.

© Stack Overflow or respective owner

Related posts about winforms

Related posts about .NET