1 write to _namedConnectionComboBox
System.Web.Entity.Design (1)
System\Data\WebControls\Design\EntityDataSourceConfigureObjectContextPanel.designer.cs (1)
43this._namedConnectionComboBox = new System.Windows.Forms.ComboBox();
27 references to _namedConnectionComboBox
System.Web.Entity.Design (27)
System\Data\WebControls\Design\EntityDataSourceConfigureObjectContextPanel.cs (20)
60_namedConnectionComboBox.Location = new Point(25, top + 6); 61_namedConnectionComboBox.Size = new Size(454, 21); 62top = _namedConnectionComboBox.Bottom; 86_namedConnectionComboBox.TabStop = true; 96_namedConnectionComboBox.TabIndex = tabIndex += 10; 111this._namedConnectionComboBox.AccessibleName = Strings.Wizard_ObjectContextPanel_NamedConnectionRadioButtonAccessibleName; 127_namedConnectionComboBox.Enabled = false; 169_namedConnectionComboBox.Enabled = true; 175_configureObjectContext.SelectConnectionStringHasValue(_namedConnectionComboBox.SelectedIndex != -1); 180_namedConnectionComboBox.Select(); 185if (_namedConnectionComboBox.SelectedIndex != -1) 201_configureObjectContext.SelectConnectionStringHasValue(_namedConnectionComboBox.SelectedIndex != -1); 205if (_namedConnectionComboBox.SelectedIndex != -1) 257if (_namedConnectionComboBox.SelectedIndex != -1) 259selectedConnection = _namedConnectionComboBox.SelectedItem as EntityConnectionStringBuilderItem; 277_namedConnectionComboBox.Select(); 336_namedConnectionComboBox.Enabled = isNamedConnection; 343_namedConnectionComboBox.SelectedIndex = -1; 348_namedConnectionComboBox.SelectedItem = connStrBuilderItem; 371_namedConnectionComboBox.Items.AddRange(namedConnections.ToArray());
System\Data\WebControls\Design\EntityDataSourceConfigureObjectContextPanel.designer.cs (7)
64this._databaseConnectionGroupBox.Controls.Add(this._namedConnectionComboBox); 70this._databaseConnectionGroupBox.Controls.Add(this._namedConnectionComboBox); 91this._namedConnectionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 92this._namedConnectionComboBox.FormattingEnabled = true; 93this._namedConnectionComboBox.Name = "_namedConnectionComboBox"; 94this._namedConnectionComboBox.SelectedIndexChanged += new EventHandler(OnNamedConnectionComboBox_SelectedIndexChanged); 95this._namedConnectionComboBox.Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top;