我在windows窗体中使用checklistbox控件。虽然绑定后,可能它有超过100秒的项目。所以考虑在multiplecolumns中显示checklistbox 这样用户可以轻松选择而无需滚动很多。 有可能吗?
答案 0 :(得分:1)
在MultiColumn
上将True
设置为CheckedListBox
。
checkedListBox1.MultiColumn = true;
for (var i = 0; i < 20; i++)
{
checkedListBox1.Items.Add("Item " + i);
}