namespace AppliedDataBindingSample {
partial class MasterDetailsForm {
///
/// 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.northwindDataSet = new AppliedDataBindingSample.NorthwindDataSet();
this.suppliersBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.suppliersTableAdapter = new AppliedDataBindingSample.NorthwindDataSetTableAdapters.SuppliersTableAdapter();
this.productsBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.productsTableAdapter = new AppliedDataBindingSample.NorthwindDataSetTableAdapters.ProductsTableAdapter();
this.productsDataGridView = new System.Windows.Forms.DataGridView();
this.label1 = new System.Windows.Forms.Label();
this.suppliersDataGridView = new System.Windows.Forms.DataGridView();
this.companyNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.label2 = new System.Windows.Forms.Label();
this.ProductName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.QuantityPerUnit = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.unitPriceDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.northwindDataSet)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.suppliersBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.productsBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.productsDataGridView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.suppliersDataGridView)).BeginInit();
this.SuspendLayout();
//
// northwindDataSet
//
this.northwindDataSet.DataSetName = "NorthwindDataSet";
this.northwindDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// suppliersBindingSource
//
this.suppliersBindingSource.DataMember = "Suppliers";
this.suppliersBindingSource.DataSource = this.northwindDataSet;
//
// suppliersTableAdapter
//
this.suppliersTableAdapter.ClearBeforeFill = true;
//
// productsBindingSource
//
this.productsBindingSource.DataMember = "FK_Products_Suppliers";
this.productsBindingSource.DataSource = this.suppliersBindingSource;
//
// productsTableAdapter
//
this.productsTableAdapter.ClearBeforeFill = true;
//
// productsDataGridView
//
this.productsDataGridView.AllowUserToAddRows = false;
this.productsDataGridView.AllowUserToDeleteRows = false;
this.productsDataGridView.AutoGenerateColumns = false;
this.productsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ProductName,
this.QuantityPerUnit,
this.unitPriceDataGridViewTextBoxColumn});
this.productsDataGridView.DataSource = this.productsBindingSource;
this.productsDataGridView.Location = new System.Drawing.Point(12, 141);
this.productsDataGridView.Name = "productsDataGridView";
this.productsDataGridView.Size = new System.Drawing.Size(381, 113);
this.productsDataGridView.TabIndex = 2;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 125);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(93, 13);
this.label1.TabIndex = 2;
this.label1.Text = "Products (Details):";
//
// suppliersDataGridView
//
this.suppliersDataGridView.AllowUserToAddRows = false;
this.suppliersDataGridView.AllowUserToDeleteRows = false;
this.suppliersDataGridView.AutoGenerateColumns = false;
this.suppliersDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.companyNameDataGridViewTextBoxColumn});
this.suppliersDataGridView.DataSource = this.suppliersBindingSource;
this.suppliersDataGridView.Location = new System.Drawing.Point(12, 24);
this.suppliersDataGridView.Name = "suppliersDataGridView";
this.suppliersDataGridView.Size = new System.Drawing.Size(381, 91);
this.suppliersDataGridView.TabIndex = 4;
//
// companyNameDataGridViewTextBoxColumn
//
this.companyNameDataGridViewTextBoxColumn.DataPropertyName = "CompanyName";
this.companyNameDataGridViewTextBoxColumn.HeaderText = "CompanyName";
this.companyNameDataGridViewTextBoxColumn.Name = "companyNameDataGridViewTextBoxColumn";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(11, 8);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(89, 13);
this.label2.TabIndex = 3;
this.label2.Text = "Supplier (Master):";
//
// ProductName
//
this.ProductName.DataPropertyName = "ProductName";
this.ProductName.HeaderText = "ProductName";
this.ProductName.Name = "ProductName";
//
// QuantityPerUnit
//
this.QuantityPerUnit.DataPropertyName = "QuantityPerUnit";
this.QuantityPerUnit.HeaderText = "QuantityPerUnit";
this.QuantityPerUnit.Name = "QuantityPerUnit";
//
// unitPriceDataGridViewTextBoxColumn
//
this.unitPriceDataGridViewTextBoxColumn.DataPropertyName = "UnitPrice";
this.unitPriceDataGridViewTextBoxColumn.HeaderText = "UnitPrice";
this.unitPriceDataGridViewTextBoxColumn.Name = "unitPriceDataGridViewTextBoxColumn";
//
// MasterDetailsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(405, 267);
this.Controls.Add(this.suppliersDataGridView);
this.Controls.Add(this.label2);
this.Controls.Add(this.productsDataGridView);
this.Controls.Add(this.label1);
this.Name = "MasterDetailsForm";
this.Text = "Master-Details UI";
this.Load += new System.EventHandler(this.MasterDetailsForm_Load);
((System.ComponentModel.ISupportInitialize)(this.northwindDataSet)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.suppliersBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.productsBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.productsDataGridView)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.suppliersDataGridView)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private NorthwindDataSet northwindDataSet;
private System.Windows.Forms.BindingSource suppliersBindingSource;
private AppliedDataBindingSample.NorthwindDataSetTableAdapters.SuppliersTableAdapter suppliersTableAdapter;
private System.Windows.Forms.BindingSource productsBindingSource;
private AppliedDataBindingSample.NorthwindDataSetTableAdapters.ProductsTableAdapter productsTableAdapter;
private System.Windows.Forms.DataGridView productsDataGridView;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.DataGridView suppliersDataGridView;
private System.Windows.Forms.DataGridViewTextBoxColumn companyNameDataGridViewTextBoxColumn;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.DataGridViewTextBoxColumn ProductName;
private System.Windows.Forms.DataGridViewTextBoxColumn QuantityPerUnit;
private System.Windows.Forms.DataGridViewTextBoxColumn unitPriceDataGridViewTextBoxColumn;
}
}