如何从代码隐藏中设置对静态属性的绑定? (WPF 4.5以上)

时间:2018-09-08 01:49:53

标签: c# wpf binding wpf-4.5

在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,然后对其进行解析!啊!!但是,嘿。。。

我必须认为有一种更简单的方法!那是什么?

1 个答案:

答案 0 :(得分:1)

由xaml paserer创建PropertyPathBinding的构造方法不同。因此,您应该使用下面的代码来使其正常工作。

var binding = new Binding() {
    Path = new PropertyPath(typeof(StaticClass).GetProperty(nameof(StaticClass.StaticProperty))),
};