亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中復選框的選中項動態添加與刪除

發布時間:2024-10-22 12:22:39 來源:億速云 閱讀:83 作者:小樊 欄目:編程語言

在C#中,你可以使用WinForms或WPF來實現復選框的動態添加與刪除。這里我將為你提供兩種情況的示例代碼。

WinForms

首先,你需要在你的窗體上添加一個復選框列表。你可以使用CheckedListBox控件來實現這個功能。

  1. 在窗體的InitializeComponent()方法中添加CheckedListBox控件。
this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
this.checkedListBox1.Location = new System.Drawing.Point(10, 10);
this.checkedListBox1.Size = new System.Drawing.Size(200, 100);
this.Controls.Add(this.checkedListBox1);
  1. 添加按鈕來動態添加和刪除復選框項。
private void btnAdd_Click(object sender, EventArgs e)
{
    string itemText = $"Item {checkedListBox1.Items.Count + 1}";
    checkedListBox1.Items.Add(itemText, false); // 第二個參數表示是否選中
}

private void btnRemove_Click(object sender, EventArgs e)
{
    if (checkedListBox1.SelectedItems.Count > 0)
    {
        checkedListBox1.Items.Remove(checkedListBox1.SelectedItems[0]);
    }
}

WPF

在WPF中,你可以使用CheckBox控件來實現復選框的動態添加與刪除。

  1. 在XAML中添加CheckBox列表。
<StackPanel>
    <ItemsControl x:Name="checkBoxList">
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <CheckBox Content="{Binding}" IsChecked="{Binding IsChecked}" />
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>
    <Button Content="Add" Click="btnAdd_Click" />
    <Button Content="Remove" Click="btnRemove_Click" />
</StackPanel>
  1. 在代碼后臺中添加動態添加和刪除復選框項的方法。
private void btnAdd_Click(object sender, RoutedEventArgs e)
{
    string itemText = $"Item {checkBoxList.Items.Count + 1}";
    CheckBox checkBox = new CheckBox { Content = itemText, IsChecked = false };
    checkBoxList.Items.Add(checkBox);
}

private void btnRemove_Click(object sender, RoutedEventArgs e)
{
    CheckBox selectedCheckBox = checkBoxList.SelectedItem as CheckBox;
    if (selectedCheckBox != null)
    {
        checkBoxList.Items.Remove(selectedCheckBox);
    }
}

這樣,你就可以在C#中實現復選框的動態添加與刪除了。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿坝县| 桑日县| 彭州市| 应用必备| 白沙| 浦东新区| 即墨市| 河北区| 茶陵县| 河北省| 云和县| 个旧市| 本溪| 满洲里市| 淮阳县| 云南省| 迭部县| 津南区| 东丽区| 论坛| 库尔勒市| 民和| 苍山县| 永新县| 新建县| 光泽县| 苏尼特右旗| 永吉县| 察哈| 金乡县| 界首市| 荃湾区| 双桥区| 沧源| 大冶市| 乌恰县| 铁岭县| 鄯善县| 辽阳县| 宜州市| 杂多县|