I got a custom Type that as a couple of fields, and I'd like to only get Dependency Properties.

Here is the code that returns all properties :

propertyInfos = myType.GetProperties();

            foreach (PropertyInfo propertyInfo in propertyInfos)
            {
                Console.WriteLine(propertyInfo.Name);
            }

I know I have to add something in parameter for GetProperties, somethg with BindingFlags.XXX but I check everything that is possible as XX and didn't find something that sounds good to me...

link|improve this question

There are two aspects of a dependency property: The static field that is the real dependency property (it is of type DependencyProperty) and the facade property that returns the value of that static field. What do you want to have returned? – Daniel Hilgarth Sep 28 '11 at 12:01
feedback

1 Answer

up vote 2 down vote accepted

Dependency properties are static fields of type DepndencyProperty

static IEnumerable<FieldInfo> GetDependencyProperties(Type type)
{
    var dependencyProperties = type.GetFields(BindingFlags.Static | BindingFlags.Public)
                                   .Where(p => p.FieldType.Equals(typeof(DependencyProperty)));
    return dependencyProperties;
}

If you want to get dependency properties of parents of that control too then you can use the following method:

static IEnumerable<FieldInfo> GetDependencyProperties(Type type)
{
    var properties = type.GetFields(BindingFlags.Static | BindingFlags.Public)
                         .Where(f=>f.FieldType == typeof(DependencyProperty));
    if (type.BaseType != null)
        properties = properties.Union(GetDependencyProperties(type.BaseType));
    return properties;
}
link|improve this answer
Thx but the thing is that I got a "Type", not a DependencyObject :( – Guillaume Slashy Sep 28 '11 at 12:02
@GuillaumeCogranne check the updated answer – Hasan Khan Sep 28 '11 at 12:05
feedback

Your Answer

 
or
required, but never shown

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