What is the simplest way in WPF to enable a Button when the user types something into a TextBox?
Button
TextBox
Add a callback to the TextBox that fires on every stroke. Test for emptiness in such callback and enable/disable the button.