namespace DataBindingFundamentalsSample {
partial class IDEDataBindingForm {
///
/// 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.bindingSource = new System.Windows.Forms.BindingSource(this.components);
this.northwindDataSet = new DataBindingFundamentalsSample.NorthwindDataSet();
this.employeesTableAdapter = new DataBindingFundamentalsSample.NorthwindDataSetTableAdapters.EmployeesTableAdapter();
((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.northwindDataSet)).BeginInit();
this.SuspendLayout();
//
// bindingSource
//
this.bindingSource.DataMember = "Employees";
this.bindingSource.DataSource = this.northwindDataSet;
//
// northwindDataSet
//
this.northwindDataSet.DataSetName = "NorthwindDataSet";
this.northwindDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// employeesTableAdapter
//
this.employeesTableAdapter.ClearBeforeFill = true;
//
// IDEDataBindingForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Name = "IDEDataBindingForm";
this.Text = "IDEDataBindingForm";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.IDEDataBindingForm_FormClosing);
this.Load += new System.EventHandler(this.IDEDataBindingForm_Load);
((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.northwindDataSet)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.BindingSource bindingSource;
private NorthwindDataSet northwindDataSet;
private DataBindingFundamentalsSample.NorthwindDataSetTableAdapters.EmployeesTableAdapter employeesTableAdapter;
}
}