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)
830dyEdit = ItemHeight; 1958return ItemHeight; 1970return ItemHeight; 3358height = ItemHeight * count + 2; 3388PInvokeCore.SendMessage(this, PInvoke.CB_SETITEMHEIGHT, (WPARAM)(-1), (LPARAM)ItemHeight); 3389PInvokeCore.SendMessage(this, PInvoke.CB_SETITEMHEIGHT, 0, ItemHeight); 3393PInvokeCore.SendMessage(this, PInvoke.CB_SETITEMHEIGHT, (WPARAM)(-1), (LPARAM)ItemHeight); 3609MeasureItemEventArgs mie = new(graphics, itemID, ItemHeight); 3616mis->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);