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