ListBoxControl 效果如下: 示例代码: string[] girlArr = { "面码", "Saber", "Mathilda" }; // Set the listBox's background color listBoxControl1.BackColor = Color.FromArgb(254, 246, 212); // Dock to all edges and fill the parent container…
一.checkedListBoxControl的使用全选 private void InitDate() { CheckedListBoxItem[] itemArr = { new CheckedListBoxItem("全选",false), new CheckedListBoxItem("星期一", false), new CheckedListBoxItem("星期二", false), new CheckedListBoxItem(&q…