1 write to listBox1
WinFormsControlsTest (1)
ListBoxes.Designer.cs (1)
35
this.
listBox1
= new System.Windows.Forms.ListBox();
9 references to listBox1
WinFormsControlsTest (9)
ListBoxes.Designer.cs (9)
65
this.
listBox1
.Location = new System.Drawing.Point(20, 40);
66
this.
listBox1
.Name = "listBox1";
67
this.
listBox1
.Size = new System.Drawing.Size(200, 150);
68
this.
listBox1
.DrawMode = System.Windows.Forms.DrawMode.Normal;
69
this.
listBox1
.SelectionMode = SelectionMode.MultiSimple;
70
this.
listBox1
.Click += this.Control_Click;
84
this.addButton1.Tag = new object[] {
listBox1
, textBox1 };
93
this.deleteButton1.Tag =
listBox1
;
230
this.Controls.Add(this.
listBox1
);