1 write to comboBox1
WinFormsControlsTest (1)
ComboBoxes.Designer.cs (1)
34this.comboBox1 = new System.Windows.Forms.ComboBox();
11 references to comboBox1
WinFormsControlsTest (11)
ComboBoxes.cs (2)
15comboBox1.SelectedIndex = 0; 23label1.Text = comboBox1.Text;
ComboBoxes.Designer.cs (9)
54this.comboBox1.FlatStyle = System.Windows.Forms.FlatStyle.System; 55this.comboBox1.FormattingEnabled = true; 56this.comboBox1.Items.AddRange(new object[] { 59this.comboBox1.Location = new System.Drawing.Point(21, 22); 60this.comboBox1.Name = "comboBox1"; 61this.comboBox1.Size = new System.Drawing.Size(121, 21); 62this.comboBox1.TabIndex = 3; 63this.comboBox1.SelectedIndexChanged += this.ComboBox1_SelectedIndexChanged; 284this.Controls.Add(this.comboBox1);