我的 WPF 窗口中有一个SplitButton
,它是从 Xceed 的扩展 WPF 工具包中借来的。它的下拉内容由一些RadioButton
s组成。就像是:
<Window x:Class="WpfTest.Test3"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:tk="clr-namespace:Xceed.Wpf.Toolkit;assembly=Xceed.Wpf.Toolkit"
Title="Test3" Height="300" Width="300">
<Grid Height="25" Width="150">
<tk:SplitButton Content="Default Command">
<tk:SplitButton.DropDownContent>
<StackPanel>
<RadioButton Content="Default Command" GroupName="variations" Margin="5" IsChecked="True"/>
<RadioButton Content="Alternate Command 1" GroupName="variations" Margin="5"/>
<RadioButton Content="Alternate Command 2" GroupName="variations" Margin="5"/>
</StackPanel>
</tk:SplitButton.DropDownContent>
</tk:SplitButton>
</Grid>
</Window>
这会产生这样的东西:
问题是,当我单击每个RadioButton
s 时,下拉菜单不会消失。我做了一些谷歌搜索,并意识到我应该Click
为每个RadioButton
. 但我不知道如何隐藏该事件处理程序中的下拉菜单。作为旁注,它似乎 aMenuItem
具有 的属性 StaysOpenOnClick
,但其他控件没有这样的东西。
尽管以编程方式执行此操作就足够了,但是是否有 MVVM 方法呢?