Base:
property
ItemHeight
System.Windows.Forms.ListBox.ItemHeight
2 writes to ItemHeight
System.Windows.Forms.Tests (2)
CheckedListBoxTests.cs (2)
674checkedListBox.ItemHeight = 50; 677checkedListBox.ItemHeight = -1;
7 references to ItemHeight
System.Windows.Forms (3)
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (3)
464PInvokeCore.SendMessage(this, PInvoke.LB_SETITEMHEIGHT, (WPARAM)0, (LPARAM)ItemHeight); 497int height = ItemHeight; 761PInvokeCore.SendMessage(this, PInvoke.LB_SETITEMHEIGHT, (WPARAM)0, (LPARAM)ItemHeight);
System.Windows.Forms.Tests (4)
CheckedListBoxTests.cs (4)
665checkedListBox.ItemHeight.Should().Be(expectedHeight); 672int originalHeight = checkedListBox.ItemHeight; 675checkedListBox.ItemHeight.Should().Be(originalHeight); 678checkedListBox.ItemHeight.Should().Be(originalHeight);