这个问题可能与在 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创建一个ObjectDataProvider
for BProperty
on 。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}"
我怎样才能访问CProperty
的A
实例?BProperty
ObjectDataProvider