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