Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のクラスを定義しています。
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}"
wherensは適切な CLR 名前空間にマップされています。
ns