I have a button and textbox in my wpf app. How can i make button not enable until user enters some text in textbox?
|
This should do it:
|
|||||||||||
|
|
In MVVM (wich makes a lot of things a lot easier - you should try it) you would have two properties in your ViewModel
The The linked article explains it in detail. |
||||
|
|
|
I know this isn't as elegant as the other posts, but it's a more straightforward xaml/codebehind example of how to accomplish the same thing. Xaml:
CodeBehind:
|
||||
|
|
You could subscribe to the |
|||
|
|