I'd like to be able to set properties for various controls in my WPF application where I have the string name of a control and the string name of its type, but I don't know how to do it. So far I have this:

( (TabItem)this.FindName( "tabPatient" ) ).IsEnabled = false;

I can iterate through a list of control names and set properties with just the string name of the control, but what I want is to be able to do it without having to perform an explicit hard-coded cast of the object type.

Is there a way to do this?

Thanks.

link|improve this question

65% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can navigate WPF's VisualTree to find an element by name and set a property.

For example, using some helper classes found here you can say

foreach(var s in controlList)
{
    var ctrl = VisualTreeHelpers.FindChild<UIElement>(this, s);
    if (ctrl != null)
        ctrl.IsEnabled = false;
}

You don't really need to know the control type. All controls with an IsEnabled property are based off of UIElement, so just cast the control as a UIElement to modify it's IsEnabled property

link|improve this answer
Wow, Rachel, talk about comprehensive. I like H.B.'s answer as it is a very simple way to do what I needed, but you really knocked it out of the park with your approach. You took a micro aspect of a problem, and solved the macro implications. Your approach is very helpful in solving my immediate issue, and is food for thought for a deeper understanding of WPF as I continue to learn. Thank you very much. – MikeMalter Dec 13 '11 at 19:57
@MikeMalter Glad you found it helpful :) I frequently want to find things in WPF's Visual Tree and got tired of copy/pasting the same methods into my code, so just wrote them all into my WPF Library – Rachel Dec 13 '11 at 20:10
feedback

The type does not really matter, right? All you need is a property, so you could do something like this:

var obj = FindName("name");
obj.GetType().GetProperty("IsEnabled").SetValue(obj, false);

Alternatively you could use dynamic, which does about the same thing:

dynamic dynObject = (dynamic)FindName("name");
dynObject.IsEnabled = false;
link|improve this answer
HB, thanks for your answers, really cool and helped me understand a little more what is going on. It is a good answer, and got the results I wanted. I did mark Rachel's answer as the answer to the question as her answer not only solved the immediate issue, but provided a framework for solving other WPF navigational issues. Thanks again. – MikeMalter Dec 13 '11 at 19:58
You're welcome, glad it was of some use. – H.B. Dec 13 '11 at 20:29
feedback

Your Answer

 
or
required, but never shown

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