1 write to comboBox1
WinFormsControlsTest (1)
ComboBoxesWithScrollBars.Designer.cs (1)
35this.comboBox1 = new System.Windows.Forms.ComboBox();
21 references to comboBox1
WinFormsControlsTest (21)
ComboBoxesWithScrollBars.cs (12)
17comboBox1.Items.Add(i); 26changeDDH_UpDown1.Value = comboBox1.DropDownHeight; 31maxDropDownItemsUpDown1.Value = comboBox1.MaxDropDownItems; 36integralHeightCheckBox1.Checked = comboBox1.IntegralHeight; 41useDifferentHeightsCheckBox1.Checked = comboBox1.DrawMode == DrawMode.OwnerDrawVariable; 51comboBox1.DropDownHeight = (int)changeDDH_UpDown1.Value; 60maxDropDownItemsUpDown1.ValueChanged += (s, e) => comboBox1.MaxDropDownItems = (int)maxDropDownItemsUpDown1.Value; 63integralHeightCheckBox1.CheckedChanged += (s, e) => comboBox1.IntegralHeight = integralHeightCheckBox1.Checked; 79comboBox1.DrawMode = DrawMode.OwnerDrawVariable; 80comboBox1.MeasureItem += comboBox_MeasureItem; 84comboBox1.DrawMode = DrawMode.OwnerDrawFixed; 85comboBox1.MeasureItem -= comboBox_MeasureItem;
ComboBoxesWithScrollBars.Designer.cs (9)
72this.comboBox1.FormattingEnabled = true; 73this.comboBox1.IntegralHeight = false; 74this.comboBox1.Location = new System.Drawing.Point(37, 348); 75this.comboBox1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); 76this.comboBox1.Name = "comboBox1"; 77this.comboBox1.Size = new System.Drawing.Size(116, 23); 78this.comboBox1.TabIndex = 0; 79this.comboBox1.DrawItem += this.comboBox_DrawItem; 354this.Controls.Add(this.comboBox1);