如何从代码隐藏设置到静态 属性 的绑定? (WPF 4.5+)

How do you set up a binding to a static property from code-behind? (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")
};

...但是 none 以上工作。

这可以设置初始值,但不会更新...

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,然后解析它!啊!!但是,嘿......它有效。

我不得不认为有更简单的方法!那是什么?

通过 xaml 创建一个 PropertyPath paserer 不同于 Binding 的构造函数。所以你应该使用下面的代码来让它工作。

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