1 write to _entityTypeFilterComboBox
System.Web.Entity.Design (1)
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.designer.cs (1)
44this._entityTypeFilterComboBox = new System.Windows.Forms.ComboBox();
16 references to _entityTypeFilterComboBox
System.Web.Entity.Design (16)
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.cs (10)
54_entityTypeFilterComboBox.Location = new System.Drawing.Point(12, top + 3); 55_entityTypeFilterComboBox.Size = new System.Drawing.Size(502, 21); 56top = _entityTypeFilterComboBox.Bottom; 95_entityTypeFilterComboBox.TabStop = true; 109_entityTypeFilterComboBox.TabIndex = tabIndex += 10; 124_entityTypeFilterComboBox.AccessibleName = Strings.Wizard_DataSelectionPanel_EntityTypeFilterAccessibleName; 180_dataSelection.SelectEntityTypeFilter(_entityTypeFilterComboBox.SelectedItem as EntityDataSourceEntityTypeFilterItem); 305_entityTypeFilterComboBox.Items.Clear(); 306_entityTypeFilterComboBox.Items.AddRange(entityTypeFilters.ToArray()); 315_entityTypeFilterComboBox.SelectedItem = selectedEntityTypeFilter;
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.designer.cs (6)
79this._entityTypeFilterComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 80this._entityTypeFilterComboBox.FormattingEnabled = true; 81this._entityTypeFilterComboBox.Name = "_entityTypeFilterComboBox"; 82this._entityTypeFilterComboBox.SelectedIndexChanged += new EventHandler(OnEntityTypeFilterComboBox_SelectedIndexChanged); 83this._entityTypeFilterComboBox.Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top; 151this.Controls.Add(this._entityTypeFilterComboBox);