如何在 xaml 中引用类的静态属性?换句话说,我想做这样的事情:
Class BaseThingy {
public static readonly Style BaseStyle;
...
}
<ResoureDictionary ...>
<Style BasedOn="BaseThingy.Style" TargetType="BaseThingy" />
</ResourceDictionary>
在BasedOn 中执行此操作的语法是什么?我认为它会在某种程度上涉及使用
StaticResource
,但我还没有让它为我工作。 最佳答案
使用 x:Static 标记扩展
<ResoureDictionary ...
xmlns:local="clr-namespace:Namespace.Where.Your.BaseThingy.Class.Is.Defined"
>
<Style BasedOn="{x:Static local:BaseThingy.BaseStyle}" TargetType="BaseThingy" />
</ResourceDictionary>
关于c# - 访问 XAML 中的静态字段,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32395/