8 writes to ItemHeight
PresentationUI (1)
MS\Internal\Documents\SignatureSummaryDialog.cs (1)
520
e.
ItemHeight
= CalculateItemHeight(e.Graphics,
System.Windows.Forms (2)
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
813
e.
ItemHeight
= _idealCheckSize + 2;
System\Windows\Forms\Layout\MeasureItemEventArgs.cs (1)
23
ItemHeight
= itemHeight;
System.Windows.Forms.Tests (2)
System\Windows\Forms\AccessibleObjects\ComboBox.ComboBoxItemAccessibleObjectTests.cs (1)
484
e.
ItemHeight
= GetCustomItemHeight(e.Index);
System\Windows\Forms\MeasureItemEventArgsTests.cs (1)
63
ItemHeight
= value
WinFormsControlsTest (3)
ComboBoxesWithScrollBars.cs (1)
125
private void comboBox_MeasureItem(object sender, MeasureItemEventArgs e) => e.
ItemHeight
= 15 + (e.Index % 5) * 5;
ListBoxes.cs (2)
56
e.
ItemHeight
+= 10;
60
e.
ItemHeight
+= 5;
9 references to ItemHeight
System.Windows.Forms (5)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (3)
3401
if (mievent.
ItemHeight
!= original)
3403
PInvokeCore.SendMessage(this, PInvoke.CB_SETITEMHEIGHT, (WPARAM)i, (LPARAM)mievent.
ItemHeight
);
3612
mis->itemHeight = unchecked((uint)mie.
ItemHeight
);
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
811
if (e.
ItemHeight
< _idealCheckSize + 2)
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
2384
mis->itemHeight = (uint)mie.
ItemHeight
;
System.Windows.Forms.Tests (4)
System\Windows\Forms\ComboBoxTests.cs (1)
2590
Assert.Equal(18, e.
ItemHeight
);
System\Windows\Forms\MeasureItemEventArgsTests.cs (3)
28
Assert.Equal(itemHeight, e.
ItemHeight
);
49
Assert.Equal(0, e.
ItemHeight
);
65
Assert.Equal(value, e.
ItemHeight
);