1 write to comboBox3
WinFormsControlsTest (1)
ComboBoxesWithScrollBars.Designer.cs (1)
37this.comboBox3 = new System.Windows.Forms.ComboBox();
26 references to comboBox3
WinFormsControlsTest (26)
ComboBoxesWithScrollBars.cs (16)
19comboBox3.Items.Add(i); 28changeDDH_UpDown3.Value = comboBox3.DropDownHeight; 33maxDropDownItemsUpDown3.Value = comboBox3.MaxDropDownItems; 38integralHeightCheckBox3.Checked = comboBox3.IntegralHeight; 43useDifferentHeightsCheckBox3.Checked = comboBox3.DrawMode == DrawMode.OwnerDrawVariable; 57comboBox3.DropDownHeight = (int)changeDDH_UpDown3.Value; 62maxDropDownItemsUpDown3.ValueChanged += (s, e) => comboBox3.MaxDropDownItems = (int)maxDropDownItemsUpDown3.Value; 65integralHeightCheckBox3.CheckedChanged += (s, e) => comboBox3.IntegralHeight = integralHeightCheckBox3.Checked; 111comboBox3.SuspendLayout(); 112comboBox3.DrawMode = DrawMode.OwnerDrawVariable; 113comboBox3.MeasureItem += comboBox_MeasureItem; 114comboBox3.ResumeLayout(false); 118comboBox3.SuspendLayout(); 119comboBox3.DrawMode = DrawMode.OwnerDrawFixed; 120comboBox3.MeasureItem -= comboBox_MeasureItem; 121comboBox3.ResumeLayout(false);
ComboBoxesWithScrollBars.Designer.cs (10)
95this.comboBox3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 96this.comboBox3.FormattingEnabled = true; 97this.comboBox3.IntegralHeight = false; 98this.comboBox3.Location = new System.Drawing.Point(370, 348); 99this.comboBox3.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); 100this.comboBox3.Name = "comboBox3"; 101this.comboBox3.Size = new System.Drawing.Size(116, 23); 102this.comboBox3.TabIndex = 2; 103this.comboBox3.DrawItem += this.comboBox_DrawItem; 356this.Controls.Add(this.comboBox3);