1 write to _selectSimpleCheckedListBox
System.Web.Entity.Design (1)
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.designer.cs (1)
47this._selectSimpleCheckedListBox = new System.Windows.Forms.CheckedListBox();
23 references to _selectSimpleCheckedListBox
System.Web.Entity.Design (23)
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.cs (15)
67_selectSimpleCheckedListBox.Location = _selectAdvancedTextBox.Location; 68_selectSimpleCheckedListBox.Size = _selectAdvancedTextBox.Size; 69_selectSimpleCheckedListBox.ColumnWidth = 225; 70top = _selectSimpleCheckedListBox.Bottom; 97_selectSimpleCheckedListBox.TabStop = true; 111_selectSimpleCheckedListBox.TabIndex = tabIndex += 10; 126_selectSimpleCheckedListBox.AccessibleName = Strings.Wizard_DataSelectionPanel_SelectAccessibleName; 203_selectSimpleCheckedListBox.SetItemChecked(0, false); 215foreach (int checkedIndex in _selectSimpleCheckedListBox.CheckedIndices) 217_selectSimpleCheckedListBox.SetItemChecked(checkedIndex, false); 287_selectSimpleCheckedListBox.Items.Clear(); 288_selectSimpleCheckedListBox.Items.AddRange(entityTypeProperties.ToArray()); 293_selectSimpleCheckedListBox.SetItemChecked(entityProperty, true); 298_selectSimpleCheckedListBox.Visible = true; 324_selectSimpleCheckedListBox.Visible = false;
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.designer.cs (8)
102this._selectSimpleCheckedListBox.CheckOnClick = true; 103this._selectSimpleCheckedListBox.FormattingEnabled = true; 104this._selectSimpleCheckedListBox.HorizontalScrollbar = true; 105this._selectSimpleCheckedListBox.MultiColumn = true; 106this._selectSimpleCheckedListBox.Name = "_selectSimpleCheckedListBox"; 107this._selectSimpleCheckedListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(OnSelectSimpleCheckedListBox_ItemCheck); 108this._selectSimpleCheckedListBox.Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top | AnchorStyles.Bottom; 153this.Controls.Add(this._selectSimpleCheckedListBox);