namespace DataBindingFundamentalsSample { partial class SimpleBindingSourceDataBindingForm { /// /// 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.label1 = new System.Windows.Forms.Label(); this.lastNameTextBox = new System.Windows.Forms.TextBox(); this.northwindDataSet = new DataBindingFundamentalsSample.NorthwindDataSet(); this.employeesBindingSource = new System.Windows.Forms.BindingSource(this.components); this.employeesTableAdapter = new DataBindingFundamentalsSample.NorthwindDataSetTableAdapters.EmployeesTableAdapter(); ((System.ComponentModel.ISupportInitialize)(this.northwindDataSet)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.employeesBindingSource)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 15); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(61, 13); this.label1.TabIndex = 0; this.label1.Text = "Last Name:"; // // lastNameTextBox // this.lastNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.lastNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.employeesBindingSource, "LastName", true)); this.lastNameTextBox.Location = new System.Drawing.Point(78, 12); this.lastNameTextBox.Name = "lastNameTextBox"; this.lastNameTextBox.Size = new System.Drawing.Size(314, 20); this.lastNameTextBox.TabIndex = 1; // // northwindDataSet // this.northwindDataSet.DataSetName = "NorthwindDataSet"; this.northwindDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // employeesBindingSource // this.employeesBindingSource.DataMember = "Employees"; this.employeesBindingSource.DataSource = this.northwindDataSet; // // employeesTableAdapter // this.employeesTableAdapter.ClearBeforeFill = true; // // SimpleBindingSourceDataBindingForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(404, 45); this.Controls.Add(this.lastNameTextBox); this.Controls.Add(this.label1); this.Name = "SimpleBindingSourceDataBindingForm"; this.Text = "Simple BindingSource Data Binding"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.simpleBindingSourceDataBindingForm_FormClosing); this.Load += new System.EventHandler(this.simpleBindingSourceDataBindingForm_Load); ((System.ComponentModel.ISupportInitialize)(this.northwindDataSet)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.employeesBindingSource)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox lastNameTextBox; private NorthwindDataSet northwindDataSet; private System.Windows.Forms.BindingSource employeesBindingSource; private DataBindingFundamentalsSample.NorthwindDataSetTableAdapters.EmployeesTableAdapter employeesTableAdapter; } }