簡體   English   中英

在C#WPF的子菜單中動態添加單選按鈕

[英]Dynamically add radiobuttons in submenu in C# WPF

我想在我的應用程序中使用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; 對我來說不是解決方案-條目必須相互阻止。

如果有人可以給我一些提示,那將是很棒的。

嘗試這個

<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;
            }
        }
    }
}

在這里,我只是靜態菜單項。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM