1 write to ItemHeight
System.Windows.Forms.Tests (1)
System\Windows\Forms\ComboBoxTests.cs (1)
2631ItemHeight = itemHeight
13 references to ItemHeight
System.Windows.Forms (9)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (9)
831dyEdit = ItemHeight; 1959return ItemHeight; 1971return ItemHeight; 3359height = ItemHeight * count + 2; 3389PInvokeCore.SendMessage(this, PInvoke.CB_SETITEMHEIGHT, (WPARAM)(-1), (LPARAM)ItemHeight); 3390PInvokeCore.SendMessage(this, PInvoke.CB_SETITEMHEIGHT, 0, ItemHeight); 3394PInvokeCore.SendMessage(this, PInvoke.CB_SETITEMHEIGHT, (WPARAM)(-1), (LPARAM)ItemHeight); 3610MeasureItemEventArgs mie = new(graphics, itemID, ItemHeight); 3617mis->itemHeight = (uint)ItemHeight;
System.Windows.Forms.Tests (4)
System\Windows\Forms\AccessibleObjects\ComboBox.ComboBoxItemAccessibleObjectTests.cs (1)
320int visibleItemsCount = (int)Math.Ceiling((double)dropDownRect.Height / comboBox.ItemHeight);
System\Windows\Forms\ComboBoxTests.cs (3)
90Assert.Equal(Control.DefaultFont.Height + 2, control.ItemHeight); 312int initialItemHeight = control.ItemHeight; 317control.ItemHeight.Should().NotBe(initialItemHeight);