namespace DataBindingFundamentalsSample {
partial class SimpleComplexBindingSourceDataBindingForm {
///
/// 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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SimpleComplexBindingSourceDataBindingForm));
this.employeesDataGridView = new System.Windows.Forms.DataGridView();
this.employeeIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.lastNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.firstNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.titleDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.titleOfCourtesyDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.birthDateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.hireDateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.addressDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cityDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.regionDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.postalCodeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.countryDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.homePhoneDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.extensionDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.photoDataGridViewImageColumn = new System.Windows.Forms.DataGridViewImageColumn();
this.notesDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.reportsToDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.photoPathDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.employeesBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.northwindDataSet = new DataBindingFundamentalsSample.NorthwindDataSet();
this.label1 = new System.Windows.Forms.Label();
this.employeesTableAdapter = new DataBindingFundamentalsSample.NorthwindDataSetTableAdapters.EmployeesTableAdapter();
this.lastNameTextBox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.firstNameTextBox = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.bindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
((System.ComponentModel.ISupportInitialize)(this.employeesDataGridView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.employeesBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.northwindDataSet)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingNavigator)).BeginInit();
this.bindingNavigator.SuspendLayout();
this.SuspendLayout();
//
// employeesDataGridView
//
this.employeesDataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.employeesDataGridView.AutoGenerateColumns = false;
this.employeesDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.employeesDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.employeeIDDataGridViewTextBoxColumn,
this.lastNameDataGridViewTextBoxColumn,
this.firstNameDataGridViewTextBoxColumn,
this.titleDataGridViewTextBoxColumn,
this.titleOfCourtesyDataGridViewTextBoxColumn,
this.birthDateDataGridViewTextBoxColumn,
this.hireDateDataGridViewTextBoxColumn,
this.addressDataGridViewTextBoxColumn,
this.cityDataGridViewTextBoxColumn,
this.regionDataGridViewTextBoxColumn,
this.postalCodeDataGridViewTextBoxColumn,
this.countryDataGridViewTextBoxColumn,
this.homePhoneDataGridViewTextBoxColumn,
this.extensionDataGridViewTextBoxColumn,
this.photoDataGridViewImageColumn,
this.notesDataGridViewTextBoxColumn,
this.reportsToDataGridViewTextBoxColumn,
this.photoPathDataGridViewTextBoxColumn});
this.employeesDataGridView.DataSource = this.employeesBindingSource;
this.employeesDataGridView.Location = new System.Drawing.Point(12, 52);
this.employeesDataGridView.Name = "employeesDataGridView";
this.employeesDataGridView.Size = new System.Drawing.Size(370, 136);
this.employeesDataGridView.TabIndex = 3;
//
// employeeIDDataGridViewTextBoxColumn
//
this.employeeIDDataGridViewTextBoxColumn.DataPropertyName = "EmployeeID";
this.employeeIDDataGridViewTextBoxColumn.HeaderText = "EmployeeID";
this.employeeIDDataGridViewTextBoxColumn.Name = "employeeIDDataGridViewTextBoxColumn";
this.employeeIDDataGridViewTextBoxColumn.ReadOnly = true;
//
// lastNameDataGridViewTextBoxColumn
//
this.lastNameDataGridViewTextBoxColumn.DataPropertyName = "LastName";
this.lastNameDataGridViewTextBoxColumn.HeaderText = "LastName";
this.lastNameDataGridViewTextBoxColumn.Name = "lastNameDataGridViewTextBoxColumn";
//
// firstNameDataGridViewTextBoxColumn
//
this.firstNameDataGridViewTextBoxColumn.DataPropertyName = "FirstName";
this.firstNameDataGridViewTextBoxColumn.HeaderText = "FirstName";
this.firstNameDataGridViewTextBoxColumn.Name = "firstNameDataGridViewTextBoxColumn";
//
// titleDataGridViewTextBoxColumn
//
this.titleDataGridViewTextBoxColumn.DataPropertyName = "Title";
this.titleDataGridViewTextBoxColumn.HeaderText = "Title";
this.titleDataGridViewTextBoxColumn.Name = "titleDataGridViewTextBoxColumn";
//
// titleOfCourtesyDataGridViewTextBoxColumn
//
this.titleOfCourtesyDataGridViewTextBoxColumn.DataPropertyName = "TitleOfCourtesy";
this.titleOfCourtesyDataGridViewTextBoxColumn.HeaderText = "TitleOfCourtesy";
this.titleOfCourtesyDataGridViewTextBoxColumn.Name = "titleOfCourtesyDataGridViewTextBoxColumn";
//
// birthDateDataGridViewTextBoxColumn
//
this.birthDateDataGridViewTextBoxColumn.DataPropertyName = "BirthDate";
this.birthDateDataGridViewTextBoxColumn.HeaderText = "BirthDate";
this.birthDateDataGridViewTextBoxColumn.Name = "birthDateDataGridViewTextBoxColumn";
//
// hireDateDataGridViewTextBoxColumn
//
this.hireDateDataGridViewTextBoxColumn.DataPropertyName = "HireDate";
this.hireDateDataGridViewTextBoxColumn.HeaderText = "HireDate";
this.hireDateDataGridViewTextBoxColumn.Name = "hireDateDataGridViewTextBoxColumn";
//
// addressDataGridViewTextBoxColumn
//
this.addressDataGridViewTextBoxColumn.DataPropertyName = "Address";
this.addressDataGridViewTextBoxColumn.HeaderText = "Address";
this.addressDataGridViewTextBoxColumn.Name = "addressDataGridViewTextBoxColumn";
//
// cityDataGridViewTextBoxColumn
//
this.cityDataGridViewTextBoxColumn.DataPropertyName = "City";
this.cityDataGridViewTextBoxColumn.HeaderText = "City";
this.cityDataGridViewTextBoxColumn.Name = "cityDataGridViewTextBoxColumn";
//
// regionDataGridViewTextBoxColumn
//
this.regionDataGridViewTextBoxColumn.DataPropertyName = "Region";
this.regionDataGridViewTextBoxColumn.HeaderText = "Region";
this.regionDataGridViewTextBoxColumn.Name = "regionDataGridViewTextBoxColumn";
//
// postalCodeDataGridViewTextBoxColumn
//
this.postalCodeDataGridViewTextBoxColumn.DataPropertyName = "PostalCode";
this.postalCodeDataGridViewTextBoxColumn.HeaderText = "PostalCode";
this.postalCodeDataGridViewTextBoxColumn.Name = "postalCodeDataGridViewTextBoxColumn";
//
// countryDataGridViewTextBoxColumn
//
this.countryDataGridViewTextBoxColumn.DataPropertyName = "Country";
this.countryDataGridViewTextBoxColumn.HeaderText = "Country";
this.countryDataGridViewTextBoxColumn.Name = "countryDataGridViewTextBoxColumn";
//
// homePhoneDataGridViewTextBoxColumn
//
this.homePhoneDataGridViewTextBoxColumn.DataPropertyName = "HomePhone";
this.homePhoneDataGridViewTextBoxColumn.HeaderText = "HomePhone";
this.homePhoneDataGridViewTextBoxColumn.Name = "homePhoneDataGridViewTextBoxColumn";
//
// extensionDataGridViewTextBoxColumn
//
this.extensionDataGridViewTextBoxColumn.DataPropertyName = "Extension";
this.extensionDataGridViewTextBoxColumn.HeaderText = "Extension";
this.extensionDataGridViewTextBoxColumn.Name = "extensionDataGridViewTextBoxColumn";
//
// photoDataGridViewImageColumn
//
this.photoDataGridViewImageColumn.DataPropertyName = "Photo";
this.photoDataGridViewImageColumn.HeaderText = "Photo";
this.photoDataGridViewImageColumn.Name = "photoDataGridViewImageColumn";
//
// notesDataGridViewTextBoxColumn
//
this.notesDataGridViewTextBoxColumn.DataPropertyName = "Notes";
this.notesDataGridViewTextBoxColumn.HeaderText = "Notes";
this.notesDataGridViewTextBoxColumn.Name = "notesDataGridViewTextBoxColumn";
//
// reportsToDataGridViewTextBoxColumn
//
this.reportsToDataGridViewTextBoxColumn.DataPropertyName = "ReportsTo";
this.reportsToDataGridViewTextBoxColumn.HeaderText = "ReportsTo";
this.reportsToDataGridViewTextBoxColumn.Name = "reportsToDataGridViewTextBoxColumn";
//
// photoPathDataGridViewTextBoxColumn
//
this.photoPathDataGridViewTextBoxColumn.DataPropertyName = "PhotoPath";
this.photoPathDataGridViewTextBoxColumn.HeaderText = "PhotoPath";
this.photoPathDataGridViewTextBoxColumn.Name = "photoPathDataGridViewTextBoxColumn";
//
// employeesBindingSource
//
this.employeesBindingSource.DataMember = "Employees";
this.employeesBindingSource.DataSource = this.northwindDataSet;
//
// northwindDataSet
//
this.northwindDataSet.DataSetName = "NorthwindDataSet";
this.northwindDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 36);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(61, 13);
this.label1.TabIndex = 2;
this.label1.Text = "Employees:";
//
// employeesTableAdapter
//
this.employeesTableAdapter.ClearBeforeFill = true;
//
// lastNameTextBox
//
this.lastNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | 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(75, 194);
this.lastNameTextBox.Name = "lastNameTextBox";
this.lastNameTextBox.Size = new System.Drawing.Size(307, 20);
this.lastNameTextBox.TabIndex = 5;
//
// label2
//
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(9, 197);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(61, 13);
this.label2.TabIndex = 4;
this.label2.Text = "Last Name:";
//
// firstNameTextBox
//
this.firstNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.firstNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.employeesBindingSource, "FirstName", true));
this.firstNameTextBox.Location = new System.Drawing.Point(75, 220);
this.firstNameTextBox.Name = "firstNameTextBox";
this.firstNameTextBox.Size = new System.Drawing.Size(307, 20);
this.firstNameTextBox.TabIndex = 7;
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(9, 223);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(60, 13);
this.label3.TabIndex = 6;
this.label3.Text = "First Name:";
//
// bindingNavigator
//
this.bindingNavigator.AddNewItem = this.bindingNavigatorAddNewItem;
this.bindingNavigator.BindingSource = this.employeesBindingSource;
this.bindingNavigator.CountItem = this.bindingNavigatorCountItem;
this.bindingNavigator.DeleteItem = this.bindingNavigatorDeleteItem;
this.bindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.bindingNavigatorMoveFirstItem,
this.bindingNavigatorMovePreviousItem,
this.bindingNavigatorSeparator,
this.bindingNavigatorPositionItem,
this.bindingNavigatorCountItem,
this.bindingNavigatorSeparator1,
this.bindingNavigatorMoveNextItem,
this.bindingNavigatorMoveLastItem,
this.bindingNavigatorSeparator2,
this.bindingNavigatorAddNewItem,
this.bindingNavigatorDeleteItem});
this.bindingNavigator.Location = new System.Drawing.Point(0, 0);
this.bindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
this.bindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
this.bindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
this.bindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
this.bindingNavigator.Name = "bindingNavigator";
this.bindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
this.bindingNavigator.Size = new System.Drawing.Size(394, 25);
this.bindingNavigator.TabIndex = 8;
this.bindingNavigator.Text = "bindingNavigator";
//
// bindingNavigatorMoveFirstItem
//
this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMoveFirstItem.Text = "Move first";
//
// bindingNavigatorMovePreviousItem
//
this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMovePreviousItem.Text = "Move previous";
//
// bindingNavigatorSeparator
//
this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
//
// bindingNavigatorPositionItem
//
this.bindingNavigatorPositionItem.AccessibleName = "Position";
this.bindingNavigatorPositionItem.AutoSize = false;
this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 21);
this.bindingNavigatorPositionItem.Text = "0";
this.bindingNavigatorPositionItem.ToolTipText = "Current position";
//
// bindingNavigatorCountItem
//
this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
this.bindingNavigatorCountItem.Size = new System.Drawing.Size(36, 22);
this.bindingNavigatorCountItem.Text = "of {0}";
this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
//
// bindingNavigatorSeparator1
//
this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator";
this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
//
// bindingNavigatorMoveNextItem
//
this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMoveNextItem.Text = "Move next";
//
// bindingNavigatorMoveLastItem
//
this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMoveLastItem.Text = "Move last";
//
// bindingNavigatorSeparator2
//
this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator";
this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
//
// bindingNavigatorAddNewItem
//
this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorAddNewItem.Text = "Add new";
//
// bindingNavigatorDeleteItem
//
this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorDeleteItem.Text = "Delete";
//
// SimpleComplexBindingSourceDataBindingForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(394, 252);
this.Controls.Add(this.bindingNavigator);
this.Controls.Add(this.firstNameTextBox);
this.Controls.Add(this.label3);
this.Controls.Add(this.lastNameTextBox);
this.Controls.Add(this.label2);
this.Controls.Add(this.employeesDataGridView);
this.Controls.Add(this.label1);
this.Name = "SimpleComplexBindingSourceDataBindingForm";
this.Text = "Simple & Complex BindingSource Data Binding";
this.Load += new System.EventHandler(this.SimpleComplexBindingSourceDataBindingForm_Load);
((System.ComponentModel.ISupportInitialize)(this.employeesDataGridView)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.employeesBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.northwindDataSet)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingNavigator)).EndInit();
this.bindingNavigator.ResumeLayout(false);
this.bindingNavigator.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataGridView employeesDataGridView;
private System.Windows.Forms.Label label1;
private NorthwindDataSet northwindDataSet;
private System.Windows.Forms.BindingSource employeesBindingSource;
private DataBindingFundamentalsSample.NorthwindDataSetTableAdapters.EmployeesTableAdapter employeesTableAdapter;
private System.Windows.Forms.DataGridViewTextBoxColumn employeeIDDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn lastNameDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn firstNameDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn titleDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn titleOfCourtesyDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn birthDateDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn hireDateDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn addressDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn cityDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn regionDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn postalCodeDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn countryDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn homePhoneDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn extensionDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewImageColumn photoDataGridViewImageColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn notesDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn reportsToDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn photoPathDataGridViewTextBoxColumn;
private System.Windows.Forms.TextBox lastNameTextBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox firstNameTextBox;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.BindingNavigator bindingNavigator;
private System.Windows.Forms.ToolStripButton bindingNavigatorAddNewItem;
private System.Windows.Forms.ToolStripLabel bindingNavigatorCountItem;
private System.Windows.Forms.ToolStripButton bindingNavigatorDeleteItem;
private System.Windows.Forms.ToolStripButton bindingNavigatorMoveFirstItem;
private System.Windows.Forms.ToolStripButton bindingNavigatorMovePreviousItem;
private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator;
private System.Windows.Forms.ToolStripTextBox bindingNavigatorPositionItem;
private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator1;
private System.Windows.Forms.ToolStripButton bindingNavigatorMoveNextItem;
private System.Windows.Forms.ToolStripButton bindingNavigatorMoveLastItem;
private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator2;
}
}