我定义了以下类:
public static class A
{
public static readonly double MyWidth = 200d;
}
如果我想将“MyWidth”作为命令参数发送到按钮,我该如何设置xaml?
<Button Caption="Large" CommandParameter="What should I type here?">
谢谢!
答案 0 :(得分:6)
CommandParameter="{x:Static ns:A.MyWidth}"
其中ns
已映射到相应的CLR名称空间。