namespace AppliedDataBindingSample {
partial class DataViewForm {
///
/// 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(DataViewForm));
this.northwindDataSet = new AppliedDataBindingSample.NorthwindDataSet();
this.customersBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.customersTableAdapter = new AppliedDataBindingSample.NorthwindDataSetTableAdapters.CustomersTableAdapter();
this.customersBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
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.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.bindingNavigatorSaveItem = new System.Windows.Forms.ToolStripButton();
this.customersDataGridView = new System.Windows.Forms.DataGridView();
this.Country = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ContactTitle = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ContactName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.sortButton = new System.Windows.Forms.Button();
this.sortCriteriaTextBox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.removeSortButton = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.searchColumnTextBox = new System.Windows.Forms.TextBox();
this.searchButton = new System.Windows.Forms.Button();
this.searchValueTextBox = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
this.removeFilterButton = new System.Windows.Forms.Button();
this.filterButton = new System.Windows.Forms.Button();
this.filterCriteriaTextBox = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.panel3 = new System.Windows.Forms.Panel();
this.panel4 = new System.Windows.Forms.Panel();
((System.ComponentModel.ISupportInitialize)(this.northwindDataSet)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.customersBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.customersBindingNavigator)).BeginInit();
this.customersBindingNavigator.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.customersDataGridView)).BeginInit();
this.panel1.SuspendLayout();
this.panel3.SuspendLayout();
this.SuspendLayout();
//
// northwindDataSet
//
this.northwindDataSet.DataSetName = "NorthwindDataSet";
this.northwindDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// customersBindingSource
//
this.customersBindingSource.DataMember = "Customers";
this.customersBindingSource.DataSource = this.northwindDataSet;
//
// customersTableAdapter
//
this.customersTableAdapter.ClearBeforeFill = true;
//
// customersBindingNavigator
//
this.customersBindingNavigator.AddNewItem = this.bindingNavigatorAddNewItem;
this.customersBindingNavigator.BindingSource = this.customersBindingSource;
this.customersBindingNavigator.CountItem = this.bindingNavigatorCountItem;
this.customersBindingNavigator.DeleteItem = this.bindingNavigatorDeleteItem;
this.customersBindingNavigator.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.bindingNavigatorSaveItem});
this.customersBindingNavigator.Location = new System.Drawing.Point(0, 0);
this.customersBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
this.customersBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
this.customersBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
this.customersBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
this.customersBindingNavigator.Name = "customersBindingNavigator";
this.customersBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
this.customersBindingNavigator.Size = new System.Drawing.Size(515, 25);
this.customersBindingNavigator.TabIndex = 0;
this.customersBindingNavigator.Text = "bindingNavigator1";
//
// 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.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorAddNewItem.Text = "Add new";
//
// 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";
//
// 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.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorDeleteItem.Text = "Delete";
//
// 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.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.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.Name = "bindingNavigatorPositionItem";
this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 25);
this.bindingNavigatorPositionItem.Text = "0";
this.bindingNavigatorPositionItem.ToolTipText = "Current position";
//
// bindingNavigatorSeparator1
//
this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
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.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.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMoveLastItem.Text = "Move last";
//
// bindingNavigatorSeparator2
//
this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
//
// bindingNavigatorSaveItem
//
this.bindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorSaveItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorSaveItem.Image")));
this.bindingNavigatorSaveItem.Name = "bindingNavigatorSaveItem";
this.bindingNavigatorSaveItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorSaveItem.Text = "Save Data";
this.bindingNavigatorSaveItem.Click += new System.EventHandler(this.bindingNavigatorSaveItem_Click);
//
// customersDataGridView
//
this.customersDataGridView.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.customersDataGridView.AutoGenerateColumns = false;
this.customersDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Country,
this.ContactTitle,
this.ContactName});
this.customersDataGridView.DataSource = this.customersBindingSource;
this.customersDataGridView.Location = new System.Drawing.Point(12, 36);
this.customersDataGridView.Name = "customersDataGridView";
this.customersDataGridView.Size = new System.Drawing.Size(491, 183);
this.customersDataGridView.TabIndex = 1;
//
// Country
//
this.Country.DataPropertyName = "Country";
this.Country.HeaderText = "Country";
this.Country.Name = "Country";
//
// ContactTitle
//
this.ContactTitle.DataPropertyName = "ContactTitle";
this.ContactTitle.HeaderText = "ContactTitle";
this.ContactTitle.Name = "ContactTitle";
this.ContactTitle.Width = 150;
//
// ContactName
//
this.ContactName.DataPropertyName = "ContactName";
this.ContactName.HeaderText = "ContactName";
this.ContactName.Name = "ContactName";
//
// sortButton
//
this.sortButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.sortButton.Location = new System.Drawing.Point(395, 225);
this.sortButton.Name = "sortButton";
this.sortButton.Size = new System.Drawing.Size(108, 23);
this.sortButton.TabIndex = 4;
this.sortButton.Text = "Sort";
this.sortButton.Click += new System.EventHandler(this.sortButton_Click);
//
// sortCriteriaTextBox
//
this.sortCriteriaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.sortCriteriaTextBox.Location = new System.Drawing.Point(94, 227);
this.sortCriteriaTextBox.Name = "sortCriteriaTextBox";
this.sortCriteriaTextBox.Size = new System.Drawing.Size(295, 20);
this.sortCriteriaTextBox.TabIndex = 3;
this.sortCriteriaTextBox.Text = "Country ASC, ContactTitle ASC";
//
// 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(11, 230);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(64, 13);
this.label2.TabIndex = 2;
this.label2.Text = "Sort Criteria:";
//
// removeSortButton
//
this.removeSortButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.removeSortButton.Location = new System.Drawing.Point(395, 254);
this.removeSortButton.Name = "removeSortButton";
this.removeSortButton.Size = new System.Drawing.Size(108, 23);
this.removeSortButton.TabIndex = 5;
this.removeSortButton.Text = "Remove Sort";
this.removeSortButton.Click += new System.EventHandler(this.removeSortButton_Click);
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(11, 366);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(82, 13);
this.label1.TabIndex = 10;
this.label1.Text = "Search Column:";
//
// searchColumnTextBox
//
this.searchColumnTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.searchColumnTextBox.Location = new System.Drawing.Point(94, 364);
this.searchColumnTextBox.Name = "searchColumnTextBox";
this.searchColumnTextBox.Size = new System.Drawing.Size(295, 20);
this.searchColumnTextBox.TabIndex = 11;
this.searchColumnTextBox.Text = "Country";
//
// searchButton
//
this.searchButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.searchButton.Location = new System.Drawing.Point(395, 362);
this.searchButton.Name = "searchButton";
this.searchButton.Size = new System.Drawing.Size(108, 23);
this.searchButton.TabIndex = 12;
this.searchButton.Text = "Search";
this.searchButton.Click += new System.EventHandler(this.searchButton_Click);
//
// searchValueTextBox
//
this.searchValueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.searchValueTextBox.Location = new System.Drawing.Point(94, 390);
this.searchValueTextBox.Name = "searchValueTextBox";
this.searchValueTextBox.Size = new System.Drawing.Size(295, 20);
this.searchValueTextBox.TabIndex = 14;
this.searchValueTextBox.Text = "Australia";
//
// 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(11, 392);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(79, 13);
this.label3.TabIndex = 13;
this.label3.Text = "Search Criteria:";
//
// panel1
//
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panel1.Controls.Add(this.panel2);
this.panel1.Location = new System.Drawing.Point(12, 284);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(491, 4);
this.panel1.TabIndex = 14;
//
// panel2
//
this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panel2.Location = new System.Drawing.Point(-2, -2);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(491, 4);
this.panel2.TabIndex = 0;
//
// removeFilterButton
//
this.removeFilterButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.removeFilterButton.Location = new System.Drawing.Point(395, 323);
this.removeFilterButton.Name = "removeFilterButton";
this.removeFilterButton.Size = new System.Drawing.Size(108, 23);
this.removeFilterButton.TabIndex = 9;
this.removeFilterButton.Text = "Remove Filter";
this.removeFilterButton.Click += new System.EventHandler(this.removeFilterButton_Click);
//
// filterButton
//
this.filterButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.filterButton.Location = new System.Drawing.Point(395, 294);
this.filterButton.Name = "filterButton";
this.filterButton.Size = new System.Drawing.Size(108, 23);
this.filterButton.TabIndex = 8;
this.filterButton.Text = "Filter";
this.filterButton.Click += new System.EventHandler(this.filterButton_Click);
//
// filterCriteriaTextBox
//
this.filterCriteriaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.filterCriteriaTextBox.Location = new System.Drawing.Point(94, 296);
this.filterCriteriaTextBox.Name = "filterCriteriaTextBox";
this.filterCriteriaTextBox.Size = new System.Drawing.Size(295, 20);
this.filterCriteriaTextBox.TabIndex = 7;
this.filterCriteriaTextBox.Text = "Country=\'Austria\'";
//
// label4
//
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(11, 299);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(67, 13);
this.label4.TabIndex = 6;
this.label4.Text = "Filter Criteria:";
//
// panel3
//
this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panel3.Controls.Add(this.panel4);
this.panel3.Location = new System.Drawing.Point(12, 352);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(491, 4);
this.panel3.TabIndex = 16;
//
// panel4
//
this.panel4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panel4.Location = new System.Drawing.Point(-2, -2);
this.panel4.Name = "panel4";
this.panel4.Size = new System.Drawing.Size(491, 4);
this.panel4.TabIndex = 15;
//
// DataViewForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(515, 423);
this.Controls.Add(this.panel3);
this.Controls.Add(this.removeFilterButton);
this.Controls.Add(this.filterButton);
this.Controls.Add(this.filterCriteriaTextBox);
this.Controls.Add(this.label4);
this.Controls.Add(this.panel1);
this.Controls.Add(this.label3);
this.Controls.Add(this.searchValueTextBox);
this.Controls.Add(this.searchButton);
this.Controls.Add(this.searchColumnTextBox);
this.Controls.Add(this.label1);
this.Controls.Add(this.removeSortButton);
this.Controls.Add(this.sortButton);
this.Controls.Add(this.sortCriteriaTextBox);
this.Controls.Add(this.label2);
this.Controls.Add(this.customersDataGridView);
this.Controls.Add(this.customersBindingNavigator);
this.Name = "DataViewForm";
this.Text = "Data Views";
this.Load += new System.EventHandler(this.DataViewForm_Load);
((System.ComponentModel.ISupportInitialize)(this.northwindDataSet)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.customersBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.customersBindingNavigator)).EndInit();
this.customersBindingNavigator.ResumeLayout(false);
this.customersBindingNavigator.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.customersDataGridView)).EndInit();
this.panel1.ResumeLayout(false);
this.panel3.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private NorthwindDataSet northwindDataSet;
private System.Windows.Forms.BindingSource customersBindingSource;
private AppliedDataBindingSample.NorthwindDataSetTableAdapters.CustomersTableAdapter customersTableAdapter;
private System.Windows.Forms.BindingNavigator customersBindingNavigator;
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;
private System.Windows.Forms.ToolStripButton bindingNavigatorSaveItem;
private System.Windows.Forms.DataGridView customersDataGridView;
private System.Windows.Forms.Button sortButton;
private System.Windows.Forms.TextBox sortCriteriaTextBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button removeSortButton;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox searchColumnTextBox;
private System.Windows.Forms.Button searchButton;
private System.Windows.Forms.TextBox searchValueTextBox;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Button removeFilterButton;
private System.Windows.Forms.Button filterButton;
private System.Windows.Forms.TextBox filterCriteriaTextBox;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Panel panel3;
private System.Windows.Forms.Panel panel4;
private System.Windows.Forms.DataGridViewTextBoxColumn Country;
private System.Windows.Forms.DataGridViewTextBoxColumn ContactTitle;
private System.Windows.Forms.DataGridViewTextBoxColumn ContactName;
}
}