I am using MVVM pattern to implement a WPF App. My question is, I have a Yes and No Radio Buttons and a text box.
ex: Do you own a Car: Yes , No (Radio Buttons) Enter Model:__________ (Text Box)
if user selects No, i am disabling it. if user selects Yes and leaves 'Enter Model' Textbox empty, i want to display a message or change background(like the way AdornerElement does). How can i achieve this.
Thank you, Re@@y.