I just want to enable or disable the button inside a ControlTemplate for a WPF Editor that I’m using.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I agree with Joel that the preferred method would be to trigger the setting of the button’s Enabled property with xaml markup, either through a trigger or by binding the Enabled value to another dependency property, possibly on a parent element, likely with the help of a ValueConverter.
However, if you have to do it explicitly in C#, you can use the FindName() method on the template property of the button. There’s an MSDN ‘how to’ linked here.