5

次のクラスを定義しています。

public static class A
{
      public static readonly double MyWidth = 200d;
}

コマンドパラメータとして「MyWidth」をボタンに送信したい場合、そのためにxamlを設定するにはどうすればよいですか?

<Button Caption="Large" CommandParameter="What should I type here?">

ありがとう!

4

1 に答える 1

7
CommandParameter="{x:Static ns:A.MyWidth}"

wherensは適切な CLR 名前空間にマップされています。

于 2012-05-07T14:54:23.340 に答える