5 references to GetItemHeight
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
316public int GetItemHeight(int index) { return ComboBox.GetItemHeight(index); }
System.Windows.Forms.Tests (4)
System\Windows\Forms\ComboBoxTests.cs (4)
2624control.GetItemHeight(index).Should().Be(expected); 2656control.Invoking(y => y.GetItemHeight(index)) 2664int itemHeight = control.GetItemHeight(index); 2675control.Invoking(c => c.GetItemHeight(0))