我的 Windows 窗体上的 Collection 中有一个包含 10 个项目的checkedListBox。使用 C# VS210。
我正在寻找一种简单的方法,通过使用存储在 Settings.Settings 文件中的值(存储为 System.Collections.Specialized.StringCollection)将我的 checkedListBox 中的两个项目标记为已选中。我无法在那里找到这个示例,我知道我应该以某种方式使用 CheckedListBox.CheckedItems 属性,但还没有找到示例。
private void frmUserConfig_Load(object sender, EventArgs e)
{
foreach (string item in Properties.Settings.Default.checkedListBoxSystem)
{
checkedListBoxSystem.SetItemCheckState(item, CheckState.Checked);
}
}