11 writes to DropDownHeight
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
151
set { ComboBox.
DropDownHeight
= value; }
System.Windows.Forms.Tests (6)
System\Windows\Forms\AccessibleObjects\ComboBox.ComboBoxItemAccessibleObjectTests.cs (5)
257
comboBox.
DropDownHeight
= 107;
309
comboBox.
DropDownHeight
= 107;
397
comboBox.
DropDownHeight
= 105;
459
comboBox.
DropDownHeight
= 400;
678
comboBox.
DropDownHeight
= 10;
System\Windows\Forms\ComboBox.ComboBoxChildListUiaProviderTests.cs (1)
112
comboBox.
DropDownHeight
= 120;
WinFormsControlsTest (4)
ComboBoxes.Designer.cs (2)
83
this.comboBox2.
DropDownHeight
= 80;
102
this.comboBox3.
DropDownHeight
= 80;
ComboBoxesWithScrollBars.cs (2)
51
comboBox1.
DropDownHeight
= (int)changeDDH_UpDown1.Value;
57
comboBox3.
DropDownHeight
= (int)changeDDH_UpDown3.Value;
5 references to DropDownHeight
System.Windows.Forms (2)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
3354
int height =
DropDownHeight
;
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
150
get { return ComboBox.
DropDownHeight
; }
System.Windows.Forms.Tests (1)
System\Windows\Forms\ComboBoxTests.cs (1)
70
Assert.Equal(106, control.
DropDownHeight
);
WinFormsControlsTest (2)
ComboBoxesWithScrollBars.cs (2)
26
changeDDH_UpDown1.Value = comboBox1.
DropDownHeight
;
28
changeDDH_UpDown3.Value = comboBox3.
DropDownHeight
;