1

这个问题可能与在 XAML 中创建嵌套类的实例重复。这个问题和相关的 MSDN 文档都与嵌套类型有关。在这个例子中,类型本身没有嵌套,但语法看起来很熟悉。我不知道这是否证明单独的问题和答案是合理的。

我想使用ObjectDataProvider. 我可以访问类型上的静态属性,但通过类型上的静态属性访问实例属性会导致编译错误。

例如,采取以下三个类。

public static class A
{
   static A()
   {
      BProperty = new B();
   }

   public static B BProperty { get; private set; }
}

public class B
{
   public B()
   {
      CProperty = new C();
   }

   public C CProperty { get; private set; }

   public string GetValue(string arg)
   {
      return arg + " from B";
   }
}

public class C
{
   public string GetValue(string arg)
   {
      return arg + " from C";
   }
}

可以使用以下 XAML创建一个ObjectDataProviderfor BPropertyon 。A

<Window.Resources>
   <ObjectDataProvider x:Key="provider"
                       ObjectInstance="{x:Static Member=local:A.BProperty}"
                       MethodName="GetValue">
      <ObjectDataProvider.MethodParameters>
         <System:String>string argument</System:String>
      </ObjectDataProvider.MethodParameters>
   </ObjectDataProvider>
</Window.Resources>
<Grid>
   <Label Content="{Binding Source={StaticResource provider}}" />
</Grid>

运行此代码会生成一个带有文本的标签:“来自 B 的字符串参数”。

如果我设置provider'sObjectInstance或我收到编译错误"{x:Static Member=local:A.BProperty.CProperty}""{x:Static Member=local:A.BProperty+CProperty}"

我怎样才能访问CPropertyA实例?BPropertyObjectDataProvider

4

2 回答 2

1

你能做的最好的事情是:

<Window.Resources>
    <ObjectDataProvider x:Key="provider"
                   ObjectType="{x:Type local:A}"
                   MethodName="GetCValue">
        <ObjectDataProvider.MethodParameters>
            <System:String>string argument</System:String>
        </ObjectDataProvider.MethodParameters>
    </ObjectDataProvider>
</Window.Resources>


public class A
{
    public A()
    {
        BProperty = new B();
    }

    public B BProperty { get; private set; }

    public string GetCValue(string arg)
    {
        return BProperty.CProperty.GetValue(arg);
    }
}

public class B
{
    public B()
    {
        CProperty = new C();
    }

    public C CProperty { get; private set; }

    public string GetValue(string arg)
    {
        return arg + " from B";
    }
}

public class C
{
    public string GetValue(string arg)
    {
        return arg + " from C";
    }
}

鉴于ObjectDataProvider的性质,我会在这种类型的实现中远离静态

如果您想使用分层对象,请考虑实现 MVVM 模式并在 ViewModel 中实现所有对象。

查看这篇文章以了解有关 ObjectDataProvider 的更多详细信息:http: //msdn.microsoft.com/en-us/magazine/cc163299.aspx

于 2012-07-19T22:41:08.520 回答
1

分两步进行:

<Window.Resources>
   <ObjectDataProvider x:Key="providerOfC"
                       ObjectInstance="{x:Static Member=local:A.BProperty}"
                       MethodName="get_CProperty" />

   <ObjectDataProvider x:Key="provider"
                       ObjectInstance="{StaticResource providerOfC}"
                       MethodName="GetValue">
      <ObjectDataProvider.MethodParameters>
         <System:String>string argument</System:String>
      </ObjectDataProvider.MethodParameters>
   </ObjectDataProvider>
</Window.Resources>
<Grid>
   <Label Content="{Binding Source={StaticResource provider}}" />
</Grid>

providerOfC让你尽可能A.BProperty.CProperty

provider然后调用GetValue("string argument")该实例。

于 2015-01-27T21:05:17.577 回答