在XAML中,设置与静态属性的绑定非常简单...
<TextBlock Text="{Binding Path=(foo:StaticClass.StaticProperty)}" />
如何在代码中实现相同的目的?
我尝试了以下方法:
var b = new Binding(){
Path = new PropertyPath(StaticClass.StaticProperty)
};
var b = new Binding(){
Path = new PropertyPath("StaticClass.StaticProperty")
};
var b = new Binding(){
Source = StaticClass,
Path = new PropertyPath("StaticProperty")
};
...但是以上都不起作用。
这可以设置初始值,但不会更新...
var binding = new Binding(){
Source = StaticClass.StaticProperty
};
到目前为止,我设法使其正常工作的唯一方法是...
public static Binding CreateStaticBinding(Type classType, string propertyName){
var xaml = $@"
<Binding
xmlns = ""http://schemas.microsoft.com/winfx/2006/xaml/presentation""
xmlns:is = ""clr-namespace:{$"{classType.Namespace};assembly={classType.Assembly.GetName().Name}"}""
Path=""(is:{classType.Name}.{propertyName})"" />";
return (Binding)System.Windows.Markup.XamlReader.Parse(xaml);
}
...但是MAN确实让我很烦,我不得不求助于创建动态XAML,然后对其进行解析!啊!!但是,嘿。。。
我必须认为有一种更简单的方法!那是什么?
答案 0 :(得分:1)
由xaml paserer创建PropertyPath
与Binding
的构造方法不同。因此,您应该使用下面的代码来使其正常工作。
var binding = new Binding() {
Path = new PropertyPath(typeof(StaticClass).GetProperty(nameof(StaticClass.StaticProperty))),
};