1 write to comboBox1
Accessibility_Core_App (1)
DataBindingExample.Designer.cs (1)
30this.comboBox1 = new System.Windows.Forms.ComboBox();
11 references to comboBox1
Accessibility_Core_App (11)
DataBindingExample.cs (2)
34comboBox1.DataSource = _studentB; 37comboBox1.DisplayMember = nameof(Student.Name);
DataBindingExample.Designer.cs (9)
54this.comboBox1.AccessibleDescription = "CB1"; 55this.comboBox1.AccessibleName = "CB1"; 56this.comboBox1.FormattingEnabled = true; 57this.comboBox1.Location = new System.Drawing.Point(10, 9); 58this.comboBox1.Name = "comboBox1"; 59this.comboBox1.Size = new System.Drawing.Size(121, 23); 60this.comboBox1.TabIndex = 2; 61this.comboBox1.Text = "ComboBox_DropDown"; 111this.panel1.Controls.Add(this.comboBox1);