vote up 9 vote down star
2

How do you bind to an objects method in this scenario in WPF?

public class RootObject
{
    public string Name { get; }

    public ObservableCollection<ChildObject> GetChildren() {...}
}

public class ChildObject
{
    public string Name { get; }
}

XAML:

<TreeView ItemsSource="some list of RootObjects">
    <TreeView.Resources>
        <HierarchicalDataTemplate DataType="{x:Type data:RootObject}" 
                                  ItemsSource="???">
            <TextBlock Text="{Binding Path=Name}" />
        </HierarchicalDataTemplate>
        <HierarchicalDataTemplate DataType="{x:Type data:ChildObject}">
            <TextBlock Text="{Binding Path=Name}" />
        </HierarchicalDataTemplate>
    </TreeView.Resources>
</TreeView>

Here I want to bind to the GetChildren method on each RootObject of the tree.

EDIT Binding to an ObjectDataProvider doesn't seem to work because I'm binding to a list of items, and the ObjectDataProvider needs either a static method, or it creates it's own instance and uses that.

For example, using Matt's answer I get:

System.Windows.Data Error: 33 : ObjectDataProvider cannot create object; Type='RootObject'; Error='Wrong parameters for constructor.'

System.Windows.Data Error: 34 : ObjectDataProvider: Failure trying to invoke method on type; Method='GetChildren'; Type='RootObject'; Error='The specified member cannot be invoked on target.' TargetException:'System.Reflection.TargetException: Non-static method requires a target.

flag

76% accept rate
Yeah, you're right. ObjectDataProvider does have an ObjectInstance property (to call its method on a specific instance) but I don't think it's a dependency property, so you can't bind it (AFAIK). – Matt Hamilton Feb 2 at 6:43
Yeah I tried to bind to ObjectInstance and found out it's not a dependency property. – Cameron MacFarland Feb 2 at 7:28
I'll leave my answer there anyway, both to give your update some context and to help someone else who finds this question with a similar enough problem. – Matt Hamilton Feb 2 at 8:43

7 Answers

vote up 2 vote down

Not sure how well it will work in your scenario, but you can use the MethodName property on ObjectDataProvider to have it call a specific method (with specific parameters if you MethodParameters property) to retrieve its data.

Here's a snippet taken directly from the MSDN page:

<Window.Resources>
    <ObjectDataProvider ObjectType="{x:Type local:TemperatureScale}"
        MethodName="ConvertTemp" x:Key="convertTemp">
        <ObjectDataProvider.MethodParameters>
            <system:Double>0</system:Double>
             <local:TempType>Celsius</local:TempType>
        </ObjectDataProvider.MethodParameters>
    </ObjectDataProvider>
</Window.Resources>

So that's an ObjectDataProvider that's calling a "ConvertTemp" method on an instance of a "TemperatureScale" class, passing two parameters (0 and TempType.Celsius).

link|flag
I've updated my answer based on your answer. – Cameron MacFarland Feb 2 at 5:56
vote up 2 vote down

Do you have to bind to the method?

Can you bind to a property who's getter is the method?

public ObservableCollection<ChildObject> Children
{
   get
   {
      return GetChildren();
   }
}
link|flag
I have to bind to a method. – Cameron MacFarland Feb 2 at 11:30
I take Cameron's comment to mean that he is binding to a type that he can not add a property to. – Drew Noakes Nov 5 at 10:21
vote up 2 vote down

Unless you can add a property to call the method (or create a wrapper class that adds that property) the only way I know of is using a ValueConverter.

link|flag
vote up 0 vote down

ObjectDataProvider also has an ObjectInstance property that can be used instead of ObjectType

link|flag
vote up 1 vote down

Did anyone find a solution to the problem? I would greatly appreciate a sample.

link|flag
vote up 0 vote down

You can use System.ComponentModel to define properties for a type dynamically (they're not part of the compiled metadata). I used this approach in WPF to enable binding to a type that stored its values in fields, as binding to fields is not possible.

The ICustomTypeDescriptor and TypeDescriptionProvider types might allow you to achieve what you want. According to this article:

TypeDescriptionProvider allows you to write a separate class that implements ICustomTypeDescriptor and then to register this class as the provider of descriptions for other types.

I haven't tried this approach myself, but I hope it's helpful in your case.

link|flag
vote up 2 vote down

Another approach that might work for you is to create a custom IValueConverter that takes a method name as a parameter, so that it would be used like this:

ItemsSource="{Binding 
    Converter={StaticResource MethodToValueConverter},
    ConverterParameter='GetChildren'}"

In this converter, you'd need to find and invoke the method using reflection. This would only work if the method took no arguments.

link|flag
Hmmm,...seems like a hack but I'm starting to think this might be the only way. It's damn sure gonna be the easiest! – Stimul8d Nov 5 at 9:21

Your Answer

Get an OpenID
or

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