1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
//------------------------------------------------------------------------------
// <copyright file="EntityDataSourceConfigureObjectContextPanel.designer.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//
// @owner [....]
// @backupOwner [....]
//------------------------------------------------------------------------------
using System.Windows.Forms;
namespace System.Web.UI.Design.WebControls
{
partial class EntityDataSourceConfigureObjectContextPanel
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this._databaseConnectionGroupLabel = new System.Windows.Forms.Label();
this._databaseConnectionGroupBox = new System.Windows.Forms.GroupBox();
this._namedConnectionRadioButton = new System.Windows.Forms.RadioButton();
this._namedConnectionComboBox = new System.Windows.Forms.ComboBox();
this._connectionStringTextBox = new System.Windows.Forms.TextBox();
this._connectionStringRadioButton = new System.Windows.Forms.RadioButton();
this._containerNameLabel = new System.Windows.Forms.Label();
this._containerNameComboBox = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
this.InitializeSizes();
//
// _databaseConnectionGroupLabel
//
this._databaseConnectionGroupLabel.AutoSize = true;
this._databaseConnectionGroupLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this._databaseConnectionGroupLabel.Name = "_databaseConnectionGroupLabel";
//
// _databaseConnectionGroupBox
//
this._databaseConnectionGroupBox.Controls.Add(this._namedConnectionRadioButton);
this._databaseConnectionGroupBox.Controls.Add(this._namedConnectionComboBox);
this._databaseConnectionGroupBox.Controls.Add(this._connectionStringRadioButton);
this._databaseConnectionGroupBox.Controls.Add(this._connectionStringTextBox);
this._databaseConnectionGroupBox.Name = "_databaseConnectionGroupBox";
this._databaseConnectionGroupBox.Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top;
//
// _namedConnectionRadioButton
//
this._namedConnectionRadioButton.AutoSize = true;
this._namedConnectionRadioButton.Checked = true;
this._namedConnectionRadioButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this._namedConnectionRadioButton.Name = "_namedConnectionRadioButton";
this._namedConnectionRadioButton.UseVisualStyleBackColor = true;
this._namedConnectionRadioButton.CheckedChanged += new System.EventHandler(this.OnNamedConnectionRadioButton_CheckedChanged);
//
// _namedConnectionComboBox
//
this._namedConnectionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this._namedConnectionComboBox.FormattingEnabled = true;
this._namedConnectionComboBox.Name = "_namedConnectionComboBox";
this._namedConnectionComboBox.SelectedIndexChanged += new EventHandler(OnNamedConnectionComboBox_SelectedIndexChanged);
this._namedConnectionComboBox.Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top;
//
// _connectionStringRadioButton
//
this._connectionStringRadioButton.AutoSize = true;
this._connectionStringRadioButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this._connectionStringRadioButton.Name = "_connectionStringRadioButton";
this._connectionStringRadioButton.UseVisualStyleBackColor = true;
this._connectionStringRadioButton.CheckedChanged += new System.EventHandler(this.OnConnectionStringRadioButton_CheckedChanged);
//
// _connectionStringTextBox
//
this._connectionStringTextBox.Enabled = false;
this._connectionStringTextBox.Name = "_connectionStringTextBox";
this._connectionStringTextBox.TextChanged += new EventHandler(this.OnConnectionStringTextBox_TextChanged);
this._connectionStringTextBox.Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top;
//
// _containerNameLabel
//
this._containerNameLabel.AutoSize = true;
this._containerNameLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this._containerNameLabel.Name = "_containerNameLabel";
//
// _containerNameComboBox
//
this._containerNameComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this._containerNameComboBox.FormattingEnabled = true;
this._containerNameComboBox.Name = "_containerNameComboBox";
this._containerNameComboBox.Enter += new EventHandler(OnContainerNameComboBox_Enter);
this._containerNameComboBox.SelectedIndexChanged += new System.EventHandler(this.OnContainerNameComboBox_SelectedIndexChanged);
this._containerNameComboBox.Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top;
//
// EntityDataSourceConfigureObjectContextPanel
//
this.Controls.Add(this._databaseConnectionGroupLabel);
this.Controls.Add(this._databaseConnectionGroupBox);
this.Controls.Add(this._containerNameLabel);
this.Controls.Add(this._containerNameComboBox);
this.Name = "EntityDataSourceConfigureObjectContextPanel";
this.Size = new System.Drawing.Size(528, 319);
this.MinimumSize = this.Size;
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.Label _databaseConnectionGroupLabel;
private System.Windows.Forms.GroupBox _databaseConnectionGroupBox;
private System.Windows.Forms.RadioButton _namedConnectionRadioButton;
private System.Windows.Forms.ComboBox _namedConnectionComboBox;
private System.Windows.Forms.RadioButton _connectionStringRadioButton;
private System.Windows.Forms.TextBox _connectionStringTextBox;
private System.Windows.Forms.Label _containerNameLabel;
private System.Windows.Forms.ComboBox _containerNameComboBox;
}
}
|