Base:
property
ItemHeight
System.Windows.Forms.ListBox.ItemHeight
2 writes to ItemHeight
System.Windows.Forms.Tests (2)
CheckedListBoxTests.cs (2)
676checkedListBox.ItemHeight = 50; 679checkedListBox.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)
667checkedListBox.ItemHeight.Should().Be(expectedHeight); 674int originalHeight = checkedListBox.ItemHeight; 677checkedListBox.ItemHeight.Should().Be(originalHeight); 680checkedListBox.ItemHeight.Should().Be(originalHeight);