7 writes to MaxDropDownItems
System.Windows.Forms (3)
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (2)
392EditingComboBox.MaxDropDownItems = value; 1280comboBox.MaxDropDownItems = MaxDropDownItems;
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
224set { ComboBox.MaxDropDownItems = value; }
System.Windows.Forms.Tests (1)
System\Windows\Forms\AccessibleObjects\ComboBox.ComboBoxItemAccessibleObjectTests.cs (1)
669comboBox.MaxDropDownItems = 1;
WinFormsControlsTest (3)
ComboBoxesWithScrollBars.cs (3)
60maxDropDownItemsUpDown1.ValueChanged += (s, e) => comboBox1.MaxDropDownItems = (int)maxDropDownItemsUpDown1.Value; 61maxDropDownItemsUpDown2.ValueChanged += (s, e) => comboBox2.MaxDropDownItems = (int)maxDropDownItemsUpDown2.Value; 62maxDropDownItemsUpDown3.ValueChanged += (s, e) => comboBox3.MaxDropDownItems = (int)maxDropDownItemsUpDown3.Value;
5 references to MaxDropDownItems
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
223get { return ComboBox.MaxDropDownItems; }
System.Windows.Forms.Tests (1)
System\Windows\Forms\ComboBoxTests.cs (1)
100Assert.Equal(8, control.MaxDropDownItems);
WinFormsControlsTest (3)
ComboBoxesWithScrollBars.cs (3)
31maxDropDownItemsUpDown1.Value = comboBox1.MaxDropDownItems; 32maxDropDownItemsUpDown2.Value = comboBox2.MaxDropDownItems; 33maxDropDownItemsUpDown3.Value = comboBox3.MaxDropDownItems;