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