91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

尉氏县| 舞钢市| 永和县| 屏东县| 德昌县| 蒙山县| 澜沧| 凌云县| 达孜县| 玉林市| 牙克石市| 简阳市| 集贤县| 济南市| 聂拉木县| 津市市| 阿坝县| 景东| 五常市| 云南省| 五台县| 嘉兴市| 高要市| 九寨沟县| 腾冲县| 建始县| 湛江市| 沂南县| 阜阳市| 乌兰浩特市| 黄梅县| 绩溪县| 思茅市| 当阳市| 克山县| 芦山县| 延寿县| 乐陵市| 沙湾县| 萝北县| 东阿县|