13 writes to IntegralHeight
System.Windows.Forms (2)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
468IntegralHeight = false;
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
198set { ComboBox.IntegralHeight = value; }
System.Windows.Forms.Tests (5)
System\Windows\Forms\AccessibleObjects\ComboBox.ComboBoxItemAccessibleObjectTests.cs (4)
245comboBox.IntegralHeight = false; 294comboBox.IntegralHeight = false; 385comboBox.IntegralHeight = false; 668comboBox.IntegralHeight = false;
System\Windows\Forms\ComboBox.ComboBoxChildListUiaProviderTests.cs (1)
100IntegralHeight = false
WinFormsControlsTest (6)
ComboBoxesWithScrollBars.cs (3)
63integralHeightCheckBox1.CheckedChanged += (s, e) => comboBox1.IntegralHeight = integralHeightCheckBox1.Checked; 64integralHeightCheckBox2.CheckedChanged += (s, e) => comboBox2.IntegralHeight = integralHeightCheckBox2.Checked; 65integralHeightCheckBox3.CheckedChanged += (s, e) => comboBox3.IntegralHeight = integralHeightCheckBox3.Checked;
ComboBoxesWithScrollBars.Designer.cs (3)
73this.comboBox1.IntegralHeight = false; 85this.comboBox2.IntegralHeight = false; 97this.comboBox3.IntegralHeight = false;
5 references to IntegralHeight
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
197get { return ComboBox.IntegralHeight; }
System.Windows.Forms.Tests (1)
System\Windows\Forms\ComboBoxTests.cs (1)
89Assert.True(control.IntegralHeight);
WinFormsControlsTest (3)
ComboBoxesWithScrollBars.cs (3)
36integralHeightCheckBox1.Checked = comboBox1.IntegralHeight; 37integralHeightCheckBox2.Checked = comboBox2.IntegralHeight; 38integralHeightCheckBox3.Checked = comboBox3.IntegralHeight;