2 writes to ItemHeight
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ToolStripCollectionEditor.ToolStripItemEditorForm.cs (1)
441_newItemTypes.ItemHeight = Math.Max(s_iconHeight, Font.Height);
System.Windows.Forms.Tests (1)
System\Windows\Forms\ComboBoxTests.cs (1)
2633ItemHeight = itemHeight
15 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.Design (2)
System\Windows\Forms\Design\ToolStripCollectionEditor.ToolStripItemEditorForm.cs (2)
543int itemWidth = _newItemTypes.ItemHeight; 551itemWidth = (int)Math.Max(itemWidth, _newItemTypes.ItemHeight + 1
System.Windows.Forms.Tests (4)
System\Windows\Forms\AccessibleObjects\ComboBox.ComboBoxItemAccessibleObjectTests.cs (1)
322int visibleItemsCount = (int)Math.Ceiling((double)dropDownRect.Height / comboBox.ItemHeight);
System\Windows\Forms\ComboBoxTests.cs (3)
92Assert.Equal(Control.DefaultFont.Height + 2, control.ItemHeight); 314int initialItemHeight = control.ItemHeight; 319control.ItemHeight.Should().NotBe(initialItemHeight);