vote up 0 vote down star

I just want to enable or disable the button inside a ControlTemplate for a WPF Editor that I'm using.

flag

80% accept rate
It would be nice to know more specific information -- including seeing your XAML and knowing your intentions -- so that we can make our answers that much more specific. – Joel B Fant Oct 8 '08 at 21:15

2 Answers

vote up 1 vote down check

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.

link|flag
vote up 3 vote down

You really shouldn't be doing that explicitly, but instead be setting it with Triggers in the ControlTemplate itself. These Triggers would be reacting to some other change, and would set the Enabled property of the Button.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.