绑定到WPF中的方法?
如何在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>
这里我想绑定到树的每个RootObject
上的GetChildren
方法。
编辑绑定到ObjectDataProvider
似乎不工作,因为我绑定到项目列表,并且ObjectDataProvider
需要静态方法,或者它创建它自己的实例并使用它。
例如,使用Matt的答案,我得到:
System.Windows.Data错误:33:ObjectDataProvider无法创建对象; 类型= 'RootObject'; 错误='构造函数的参数错误'。
System.Windows.Data错误:34:ObjectDataProvider:尝试在类型上调用方法失败; 方法= '的GetChildren'; 类型= 'RootObject'; 错误='指定的成员无法在目标上调用。' TargetException:'System.Reflection.TargetException:非静态方法需要一个目标。
另一种可能适用于您的方法是创建一个自定义IValueConverter
,它将方法名称作为参数,以便它可以像这样使用:
ItemsSource="{Binding
Converter={StaticResource MethodToValueConverter},
ConverterParameter='GetChildren'}"
该转换器将使用反射来查找和调用该方法。 这要求该方法没有任何参数。
这是一个这样的转换器的来源的例子:
public sealed class MethodToValueConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var methodName = parameter as string;
if (value==null || methodName==null)
return value;
var methodInfo = value.GetType().GetMethod(methodName, new Type[0]);
if (methodInfo==null)
return value;
return methodInfo.Invoke(value, new object[0]);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotSupportedException("MethodToValueConverter can only be used for one way conversion.");
}
}
并进行相应的单元测试:
[Test]
public void Convert()
{
var converter = new MethodToValueConverter();
Assert.AreEqual("1234", converter.Convert(1234, typeof(string), "ToString", null));
Assert.AreEqual("ABCD", converter.Convert(" ABCD ", typeof(string), "Trim", null));
Assert.IsNull(converter.Convert(null, typeof(string), "ToString", null));
Assert.AreEqual("Pineapple", converter.Convert("Pineapple", typeof(string), "InvalidMethodName", null));
}
请注意,此转换器不会强制执行targetType
参数。
不知道它将在您的方案中有多好,但是您可以使用ObjectDataProvider上的MethodName属性让它调用特定的方法(使用MethodParameters属性的特定参数)来检索其数据。
以下是直接从MSDN页面获取的摘录:
<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>
因此,这是一个ObjectDataProvider,它在“TemperatureScale”类的实例上调用“ConvertTemp”方法,传递两个参数(0和TempType.Celsius
)。
你必须绑定到该方法吗?
你能绑定到一个属性谁的吸气是方法?
public ObservableCollection<ChildObject> Children
{
get
{
return GetChildren();
}
}
链接地址: http://www.djcxy.com/p/44629.html
下一篇: ComboBox as DataGridTemplateColumn SelectedValue not updating bound property