Guest User

Untitled

a guest
Apr 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. private void Form1_Load(object sender, EventArgs e)
  2. {
  3. CheckedListBox1.Sorted = true;
  4. CheckedListBox1.TopIndex = 0;
  5. CheckedListBox1.CheckOnClick = true;
  6. CheckedListBox1.SelectionMode = SelectionMode.One;
  7. }
  8.  
  9. private void CheckedListBox1_ItemCheck(object sender, ItemCheckEventArgs e)
  10. {
  11. for (int ix = 0; ix < CheckedListBox1.Items.Count; ++ix)
  12. {
  13. if (ix != e.Index)
  14. {
  15. CheckedListBox1.SetItemChecked(ix, false);
  16. }
  17. }
  18. }
Add Comment
Please, Sign In to add comment