XAML のボタンに ContextMenu があります。ContextMenu 項目は、ItemsSource プロパティによって読み込まれます。次に、ContextMenu の SelectedItem.Text を使用してボタンのテキストを設定します。これを行う解決策はありますか?
これが私の XAML コードのスニペットです。
<Button Grid.Column="4" Grid.Row="1" Width="100" Height="24" BorderThickness="0" Command="{Binding SwitchFieldClickCommand}" Content="{}">
<Button.ContextMenu>
<ContextMenu Name="CM_SwitchField">
<ItemsControl ItemsSource="{Binding Benutzer.SwitchFieldList}" />
</ContextMenu>
</Button.ContextMenu>
</Button>