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