我在 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>