1 write to comboBox1
TrimTest (1)
Form1.Designer.cs (1)
36comboBox1 = new ComboBox();
10 references to comboBox1
TrimTest (10)
Form1.cs (2)
43string text = comboBox1.SelectedItem as string ?? comboBox1.Text ?? string.Empty;
Form1.Designer.cs (8)
57splitContainer1.Panel2.Controls.Add(comboBox1); 78comboBox1.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; 79comboBox1.FormattingEnabled = true; 80comboBox1.Items.AddRange(new object[] { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" }); 81comboBox1.Location = new Point(37, 37); 82comboBox1.Name = "comboBox1"; 83comboBox1.Size = new Size(271, 23); 84comboBox1.TabIndex = 0;