2-way binding in Winforms app makes entering text in a TextBox painfully slow?

It shouldn't be that slow, but there's an option where you can have the textbox change on key press or on lost focus. Try setting it to lost focus. Also in your setter, be sure to check that _baseTagName!

= value before setting and raising the event. That will slow things up a bunch as well.

Related Questions