在C#WPF中的子菜单中动态添加单选按钮

时间:2014-07-27 19:37:57

标签: c# wpf radio-button menuitem

我想在我的应用程序中实现一个动态菜单,用C#编写并使用WPF。

MenuSubSerialPortSelect.Items.Clear();

foreach (string element in GlobalVars.ActualSerialPorts)
{   
    MenuItem item = new MenuItem();

    item.Header = element;

    MenuSubSerialPortSelect.Items.Add(item); 
}

子菜单添加功能正常,但如何在此样式中添加一些单选按钮?

我已经阅读了一些描述必须使用其他"模板"的网站,但我无法找到匹配的解决方案。

属性item.IsCheckable = true;不适合我 - 必须相互阻止条目。

如果有人能给我一个关于如何做到这一点的提示,那将是很好的。

1 个答案:

答案 0 :(得分:0)

试试这个

<Window x:Class="Stackoverflow.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:Stackoverflow"
    Title="MainWindow" Height="350" Width="525">
<Window.Resources>
    <RadioButton x:Key="RadioButton" HorizontalAlignment="Center"
                 GroupName="MyGroup" IsHitTestVisible="False"/>
    <Style TargetType="MenuItem">
        <Setter Property="Icon" Value="{StaticResource RadioButton}"/>
        <EventSetter Event="Click" Handler="MenuItem_Click" />
    </Style>
</Window.Resources>
<Grid Background="Red">
    <Grid.ContextMenu>
        <ContextMenu>
            <MenuItem Header="Print"/>
            <MenuItem Header="Save"/>
            <MenuItem Header="Open"/>
            <MenuItem Header="Delete"/>
            <MenuItem Header="Update"/>
        </ContextMenu>
    </Grid.ContextMenu>
</Grid>

    public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        DataContext = new ViewModel();

    }
    private void MenuItem_Click(object sender, System.Windows.RoutedEventArgs e)
    {
        MenuItem menuItem = sender as MenuItem;
        if (menuItem != null)
        {
            RadioButton rb = menuItem.Icon as RadioButton;
            if (rb != null)
            {
                rb.IsChecked = true;
            }
        }
    }
}

这里我只有静态菜单项。