1
CommandParameterが共通するボタンがいくつかありますが、ボタンが多いほど乱雑です。WPFの子要素に 'CommandParameter'を渡すには
<StackPanel>
<Button Command="{Binding Foo1Command}" CommandParameter="{Binding CommonParam, Source={StaticResource CommonObj}}" />
<Button Command="{Binding Foo2Command}" CommandParameter="{Binding CommonParam, Source={StaticResource CommonObj}}" />
<Button Command="{Binding Foo3Command}" CommandParameter="{Binding CommonParam, Source={StaticResource CommonObj}}" />
...
...
...
</StackPanel>
私は最終的には以下のように上記のコードを作りたい、子要素まで親要素にCommandParameterを渡したい、そう。
<StackPanel CommandParameter="{Binding CommonParam, Source={StaticResource CommonObj}}">
<Button Command="{Binding Foo1Command}" />
<Button Command="{Binding Foo2Command}" />
<Button Command="{Binding Foo3Command}" />
...
...
...
</StackPanel>
それは可能ですか?もしそうなら、私はそれを達成するために何を学ぶべきかを提案すればとても感謝しています。
非常に巧妙なソリューション、1 –
「ダウン子要素に親要素にCommandParameterを渡すと、」ああ、それはOKに動作しています。どうもありがとうございます! :D – jayeonsu