I need to change the vertical space for CheckedListBox
items so they fit with the text boxes on the other side:
After doing some research I found out that CheckedListBox
inherits ListBox
, so it must have its public property ItemHeight
, but for some reason it doesn't
I tried this :
ListBox l = CheckedList as ListBox;
l.ItemHeight = 30;
but it didn't work