1 write to comboBox2
WinFormsControlsTest (1)
ComboBoxesWithScrollBars.Designer.cs (1)
36
this.
comboBox2
= new System.Windows.Forms.ComboBox();
23 references to comboBox2
WinFormsControlsTest (23)
ComboBoxesWithScrollBars.cs (13)
18
comboBox2
.Items.Add(i);
27
changeCBHeight_UpDown2.Value =
comboBox2
.Size.Height;
32
maxDropDownItemsUpDown2.Value =
comboBox2
.MaxDropDownItems;
37
integralHeightCheckBox2.Checked =
comboBox2
.IntegralHeight;
42
useDifferentHeightsCheckBox2.Checked =
comboBox2
.DrawMode == DrawMode.OwnerDrawVariable;
54
changeCBHeight_UpDown2.ValueChanged += (s, e) =>
comboBox2
.Size = new Size(
comboBox2
.Size.Width, (int)changeCBHeight_UpDown2.Value);
61
maxDropDownItemsUpDown2.ValueChanged += (s, e) =>
comboBox2
.MaxDropDownItems = (int)maxDropDownItemsUpDown2.Value;
64
integralHeightCheckBox2.CheckedChanged += (s, e) =>
comboBox2
.IntegralHeight = integralHeightCheckBox2.Checked;
95
comboBox2
.DrawMode = DrawMode.OwnerDrawVariable;
96
comboBox2
.MeasureItem += comboBox_MeasureItem;
100
comboBox2
.DrawMode = DrawMode.OwnerDrawFixed;
101
comboBox2
.MeasureItem -= comboBox_MeasureItem;
ComboBoxesWithScrollBars.Designer.cs (10)
83
this.
comboBox2
.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple;
84
this.
comboBox2
.FormattingEnabled = true;
85
this.
comboBox2
.IntegralHeight = false;
86
this.
comboBox2
.Location = new System.Drawing.Point(206, 348);
87
this.
comboBox2
.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
88
this.
comboBox2
.Name = "comboBox2";
89
this.
comboBox2
.Size = new System.Drawing.Size(116, 155);
90
this.
comboBox2
.TabIndex = 1;
91
this.
comboBox2
.DrawItem += this.comboBox_DrawItem;
355
this.Controls.Add(this.
comboBox2
);