1 write to _entitySetComboBox
System.Web.Entity.Design (1)
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.designer.cs (1)
42this._entitySetComboBox = new System.Windows.Forms.ComboBox();
17 references to _entitySetComboBox
System.Web.Entity.Design (17)
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.cs (11)
46_entitySetComboBox.Location = new Point(12, top + 3); 47_entitySetComboBox.Size = new Size(502, 21); 48top = _entitySetComboBox.Bottom; 93_entitySetComboBox.TabStop = true; 107_entitySetComboBox.TabIndex = tabIndex += 10; 122_entitySetComboBox.AccessibleName = Strings.Wizard_DataSelectionPanel_EntitySetNameAccessibleName; 171_dataSelection.SelectEntitySetName(_entitySetComboBox.SelectedItem as EntityDataSourceEntitySetNameItem); 273_entitySetComboBox.Items.Clear(); 274_entitySetComboBox.Items.AddRange(entitySetNames.ToArray()); 333_entitySetComboBox.SelectedIndex = -1; 337_entitySetComboBox.SelectedItem = selectedEntitySet;
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.designer.cs (6)
65this._entitySetComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 66this._entitySetComboBox.FormattingEnabled = true; 67this._entitySetComboBox.Name = "_entitySetComboBox"; 68this._entitySetComboBox.SelectedIndexChanged += new System.EventHandler(this.OnEntitySetComboBox_SelectedIndexChanged); 69this._entitySetComboBox.Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top; 149this.Controls.Add(this._entitySetComboBox);