我定义了以下类:
public static class A
{
public static readonly double MyWidth = 200d;
}
如果我想将“MyWidth”作为命令参数发送给按钮,该如何为它设置xaml?
<Button Caption="Large" CommandParameter="What should I type here?">
谢谢!
最佳答案
CommandParameter="{x:Static ns:A.MyWidth}"
其中
ns
已映射到适当的CLR namespace 。关于c# - 通过XAML绑定(bind)将静态只读值作为CommandParameter传递?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10484102/