namespace AppliedDataBindingSample {
partial class MultipleDataContextsForm {
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing) {
if( disposing && (components != null) ) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent() {
this.components = new System.ComponentModel.Container();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.maskedTextBox2 = new System.Windows.Forms.MaskedTextBox();
this.billingStateComboBox = new System.Windows.Forms.ComboBox();
this.billingStateBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.stateDataSet = new AppliedDataBindingSample.NorthwindDataSet();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.maskedTextBox3 = new System.Windows.Forms.MaskedTextBox();
this.deliveryStateComboBox = new System.Windows.Forms.ComboBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.okButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.statesTableAdapter = new AppliedDataBindingSample.NorthwindDataSetTableAdapters.StatesTableAdapter();
this.deliveryStateBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.billingStateBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.stateDataSet)).BeginInit();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.deliveryStateBindingSource)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.maskedTextBox2);
this.groupBox1.Controls.Add(this.billingStateComboBox);
this.groupBox1.Controls.Add(this.textBox1);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(231, 103);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Billing Address";
//
// maskedTextBox2
//
this.maskedTextBox2.Location = new System.Drawing.Point(78, 73);
this.maskedTextBox2.Mask = "9999";
this.maskedTextBox2.Name = "maskedTextBox2";
this.maskedTextBox2.Size = new System.Drawing.Size(57, 20);
this.maskedTextBox2.TabIndex = 5;
//
// billingStateComboBox
//
this.billingStateComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.billingStateComboBox.DataSource = this.billingStateBindingSource;
this.billingStateComboBox.DisplayMember = "Name";
this.billingStateComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.billingStateComboBox.FormattingEnabled = true;
this.billingStateComboBox.Location = new System.Drawing.Point(78, 46);
this.billingStateComboBox.Name = "billingStateComboBox";
this.billingStateComboBox.Size = new System.Drawing.Size(147, 21);
this.billingStateComboBox.TabIndex = 3;
this.billingStateComboBox.ValueMember = "Id";
//
// billingStateBindingSource
//
this.billingStateBindingSource.AllowNew = true;
this.billingStateBindingSource.DataMember = "States";
this.billingStateBindingSource.DataSource = this.stateDataSet;
//
// stateDataSet
//
this.stateDataSet.DataSetName = "NorthwindDataSet";
this.stateDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// textBox1
//
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox1.Location = new System.Drawing.Point(78, 19);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(147, 20);
this.textBox1.TabIndex = 1;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(5, 76);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(55, 13);
this.label6.TabIndex = 4;
this.label6.Text = "Postcode:";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(5, 49);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(35, 13);
this.label5.TabIndex = 2;
this.label5.Text = "State:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(5, 22);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(38, 13);
this.label4.TabIndex = 0;
this.label4.Text = "Street:";
//
// groupBox2
//
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox2.Controls.Add(this.maskedTextBox3);
this.groupBox2.Controls.Add(this.deliveryStateComboBox);
this.groupBox2.Controls.Add(this.textBox2);
this.groupBox2.Controls.Add(this.label7);
this.groupBox2.Controls.Add(this.label8);
this.groupBox2.Controls.Add(this.label9);
this.groupBox2.Location = new System.Drawing.Point(12, 121);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(231, 103);
this.groupBox2.TabIndex = 2;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Delivery Address:";
//
// maskedTextBox3
//
this.maskedTextBox3.Location = new System.Drawing.Point(78, 73);
this.maskedTextBox3.Mask = "9999";
this.maskedTextBox3.Name = "maskedTextBox3";
this.maskedTextBox3.Size = new System.Drawing.Size(57, 20);
this.maskedTextBox3.TabIndex = 5;
//
// deliveryStateComboBox
//
this.deliveryStateComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.deliveryStateComboBox.DataSource = this.deliveryStateBindingSource;
this.deliveryStateComboBox.DisplayMember = "Name";
this.deliveryStateComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.deliveryStateComboBox.FormattingEnabled = true;
this.deliveryStateComboBox.Location = new System.Drawing.Point(78, 46);
this.deliveryStateComboBox.Name = "deliveryStateComboBox";
this.deliveryStateComboBox.Size = new System.Drawing.Size(147, 21);
this.deliveryStateComboBox.TabIndex = 3;
this.deliveryStateComboBox.ValueMember = "Id";
//
// textBox2
//
this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox2.Location = new System.Drawing.Point(78, 19);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(147, 20);
this.textBox2.TabIndex = 1;
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(5, 76);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(55, 13);
this.label7.TabIndex = 4;
this.label7.Text = "Postcode:";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(5, 49);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(35, 13);
this.label8.TabIndex = 2;
this.label8.Text = "State:";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(5, 22);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(38, 13);
this.label9.TabIndex = 0;
this.label9.Text = "Street:";
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okButton.Location = new System.Drawing.Point(87, 234);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 3;
this.okButton.Text = "OK";
this.okButton.UseVisualStyleBackColor = true;
//
// cancelButton
//
this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Location = new System.Drawing.Point(168, 234);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(75, 23);
this.cancelButton.TabIndex = 4;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = true;
//
// statesTableAdapter
//
this.statesTableAdapter.ClearBeforeFill = true;
//
// deliveryStateBindingSource
//
this.deliveryStateBindingSource.AllowNew = true;
this.deliveryStateBindingSource.DataMember = "States";
this.deliveryStateBindingSource.DataSource = this.stateDataSet;
//
// MultipleDataContextsForm
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cancelButton;
this.ClientSize = new System.Drawing.Size(255, 269);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.okButton);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Name = "MultipleDataContextsForm";
this.Text = "Multiple Data Contexts";
this.Load += new System.EventHandler(this.MultipleDataContextsForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.billingStateBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.stateDataSet)).EndInit();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.deliveryStateBindingSource)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ComboBox billingStateComboBox;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.MaskedTextBox maskedTextBox2;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.MaskedTextBox maskedTextBox3;
private System.Windows.Forms.ComboBox deliveryStateComboBox;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.Button cancelButton;
private System.Windows.Forms.BindingSource billingStateBindingSource;
private NorthwindDataSet stateDataSet;
private AppliedDataBindingSample.NorthwindDataSetTableAdapters.StatesTableAdapter statesTableAdapter;
private System.Windows.Forms.BindingSource deliveryStateBindingSource;
}
}