1 write to checkedListBox1
WinFormsControlsTest (1)
MultipleControls.Designer.cs (1)
50
this.
checkedListBox1
= new System.Windows.Forms.CheckedListBox();
11 references to checkedListBox1
WinFormsControlsTest (11)
MultipleControls.cs (1)
132
checkedListBox1
.Items.Add("Pennsylvania", CheckState.Checked);
MultipleControls.Designer.cs (10)
225
this.
checkedListBox1
.BackColor = System.Drawing.SystemColors.Window;
226
this.
checkedListBox1
.FormattingEnabled = true;
227
this.
checkedListBox1
.Items.AddRange(new object[] {
232
this.
checkedListBox1
.Location = new System.Drawing.Point(378, 49);
233
this.
checkedListBox1
.Name = "checkedListBox1";
234
this.
checkedListBox1
.Size = new System.Drawing.Size(140, 112);
235
this.
checkedListBox1
.TabIndex = 10;
236
this.
checkedListBox1
.SetItemCheckState(0, CheckState.Checked);
237
this.
checkedListBox1
.SetItemCheckState(1, CheckState.Indeterminate);
305
this.Controls.Add(this.
checkedListBox1
);