以编程方式选择winforms checkboxlist中的项目

Posted

技术标签:

【中文标题】以编程方式选择winforms checkboxlist中的项目【英文标题】:Programmatically selecting items in winforms checkboxlist 【发布时间】:2011-04-30 11:15:19 【问题描述】:

我不知道如何以编程方式选择复选框列表中的项目。

这个方法无法编译,但我想告诉你我想要得到什么结果。

public ColumnsSelector(Dictionary<string, bool> dataPropertyNames)
            : this()
        
            foreach (var item in dataPropertyNames)
            
                checkedListBox1.Items.Add(item.Key);
                checkedListBox1.Items[checkedListBox1.Items.IndexOf(item.Key)].Checked = item.Value;
            
        

你是如何解决这个问题的?

【问题讨论】:

【参考方案1】:

使用CheckedListBox.SetItemCheckState:

checkedListBox.SetItemCheckState(checkedListBox1.Items.Count - 1, CheckedState.Checked);

适用于已检查、未检查和不确定。你也可以使用CheckedListBox.SetItemChecked:

checkedListBox.SetItemChecked(checkedListBox1.Items.Count - 1, true);

【讨论】:

【参考方案2】:
 checkedListBox1.Items.Add(item.Key);
 checkedListBox1.SetItemChecked(checkedListBox1.Items.Count - 1, item.Value);

或者只是

 checkedListBox1.Items.Add(item.Key, item.Value);

【讨论】:

以上是关于以编程方式选择winforms checkboxlist中的项目的主要内容,如果未能解决你的问题,请参考以下文章

如何像在 Winform 中那样以编程方式在 WPF 中添加事件处理程序

WinForm C#如何将方法附加到以编程方式创建的控件

如何使用 CEF WinForms 以编程方式将文件附件添加到网页

如何以编程方式更新始终运行并使用 msix 部署的 WinForms 应用程序?

用于以编程方式创建的用户控件的C#Winform Click事件[复制]

WinForms TreeView - 如何手动“突出显示”节点(就像点击它一样)