1

考虑以下示例

public class Test
{
    private static string _property = "Success";
    public static string Property
    {
        get { return _property; }
        set { _property = value; }
    }


    public void Check()
    {
        var prop = new PropertyPath(this.GetType().GetProperty("Property"));
        var binding = new Binding();
        binding.Source = typeof(Test);
        binding.Path = prop;
    }

    public static void DoTest()
    {
        new Test().Check();
    }
}

当我调用Test.DoTest()它时,它在我的机器上运行良好,但在其他一些机器上抛出InvalidOperationException类似“使用 Binding.Source 时无法分配 Binding.StaticSource”(这不是准确的翻译文本)之类的消息。如果属性不是静态的,则一切正常。什么可能导致这种行为?

4

2 回答 2

1

我在 4 年前工作过 WPF ......我不记得所有这些,但使用它可能会起作用。

public class Test : DependencyObject
{

    public static readonly DependencyProperty FilterStringProperty =
        DependencyProperty.Register("Property", typeof(string),
        typeof(Test), new UIPropertyMetadata("Success"));
    public string Property
    {
        get { return (string)GetValue(FilterStringProperty); }
        set { SetValue(FilterStringProperty, value); }
    }

    public static Test Instance { get; private set; }

    static Test()
    {

    }

    public void Check()
    {
        var prop = new PropertyPath(this.GetType().GetProperty("Property"));

        var binding = new Binding();
        binding.Source = this;
        //binding.Source = typeof(Test); //-- same thing
        binding.Path = prop;

    }

    public static void DoTest()
    {

        Instance = new Test();
        new Test().Check();
    }
}
于 2013-05-15T21:45:55.437 回答
0

我猜您正在测试的机器具有不同的框架版本,并且由于 .NET 4.5 中的这个新功能,您遇到了不兼容问题:http: //msdn.microsoft.com/en-us/library/bb613588 %28v=VS.110%29.aspx#static_properties

于 2013-05-15T19:09:33.290 回答