namespace AppliedDataBindingSample {
partial class EmployeesListForm {
///
/// 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(EmployeesListForm));
this.employeesBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
this.employeesBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.northwindDataSet = new AppliedDataBindingSample.NorthwindDataSet();
this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
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.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.addToolStripButton = new System.Windows.Forms.ToolStripButton();
this.updateToolStripButton = new System.Windows.Forms.ToolStripButton();
this.deleteToolStripButton = new System.Windows.Forms.ToolStripButton();
this.employeesDataGridView = new System.Windows.Forms.DataGridView();
this.LastName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.FirstName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Title = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Extension = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Photo = new System.Windows.Forms.DataGridViewImageColumn();
this.employeesTableAdapter = new AppliedDataBindingSample.NorthwindDataSetTableAdapters.EmployeesTableAdapter();
((System.ComponentModel.ISupportInitialize)(this.employeesBindingNavigator)).BeginInit();
this.employeesBindingNavigator.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.employeesBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.northwindDataSet)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.employeesDataGridView)).BeginInit();
this.SuspendLayout();
//
// employeesBindingNavigator
//
this.employeesBindingNavigator.AddNewItem = null;
this.employeesBindingNavigator.BindingSource = this.employeesBindingSource;
this.employeesBindingNavigator.CountItem = this.bindingNavigatorCountItem;
this.employeesBindingNavigator.DeleteItem = null;
this.employeesBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.bindingNavigatorMoveFirstItem,
this.bindingNavigatorMovePreviousItem,
this.bindingNavigatorSeparator,
this.bindingNavigatorPositionItem,
this.bindingNavigatorCountItem,
this.bindingNavigatorSeparator1,
this.bindingNavigatorMoveNextItem,
this.bindingNavigatorMoveLastItem,
this.toolStripSeparator1,
this.addToolStripButton,
this.updateToolStripButton,
this.deleteToolStripButton});
this.employeesBindingNavigator.Location = new System.Drawing.Point(0, 0);
this.employeesBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
this.employeesBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
this.employeesBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
this.employeesBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
this.employeesBindingNavigator.Name = "employeesBindingNavigator";
this.employeesBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
this.employeesBindingNavigator.Size = new System.Drawing.Size(547, 25);
this.employeesBindingNavigator.TabIndex = 0;
this.employeesBindingNavigator.Text = "bindingNavigator1";
//
// employeesBindingSource
//
this.employeesBindingSource.DataMember = "Employees";
this.employeesBindingSource.DataSource = this.northwindDataSet;
//
// northwindDataSet
//
this.northwindDataSet.DataSetName = "NorthwindDataSet";
this.northwindDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// 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";
//
// 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";
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
// addToolStripButton
//
this.addToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.addToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("addToolStripButton.Image")));
this.addToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.addToolStripButton.Name = "addToolStripButton";
this.addToolStripButton.Size = new System.Drawing.Size(30, 22);
this.addToolStripButton.Text = "Add";
this.addToolStripButton.Click += new System.EventHandler(this.addToolStripButton_Click);
//
// updateToolStripButton
//
this.updateToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.updateToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("updateToolStripButton.Image")));
this.updateToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.updateToolStripButton.Name = "updateToolStripButton";
this.updateToolStripButton.Size = new System.Drawing.Size(46, 22);
this.updateToolStripButton.Text = "Update";
this.updateToolStripButton.Click += new System.EventHandler(this.updateToolStripButton_Click);
//
// deleteToolStripButton
//
this.deleteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.deleteToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("deleteToolStripButton.Image")));
this.deleteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.deleteToolStripButton.Name = "deleteToolStripButton";
this.deleteToolStripButton.Size = new System.Drawing.Size(42, 22);
this.deleteToolStripButton.Text = "Delete";
this.deleteToolStripButton.Click += new System.EventHandler(this.deleteToolStripButton_Click);
//
// employeesDataGridView
//
this.employeesDataGridView.AllowUserToAddRows = false;
this.employeesDataGridView.AllowUserToDeleteRows = false;
this.employeesDataGridView.AutoGenerateColumns = false;
this.employeesDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.LastName,
this.FirstName,
this.Title,
this.Extension,
this.Photo});
this.employeesDataGridView.DataSource = this.employeesBindingSource;
this.employeesDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
this.employeesDataGridView.Location = new System.Drawing.Point(0, 25);
this.employeesDataGridView.Name = "employeesDataGridView";
this.employeesDataGridView.ReadOnly = true;
this.employeesDataGridView.RowTemplate.Height = 100;
this.employeesDataGridView.Size = new System.Drawing.Size(547, 333);
this.employeesDataGridView.TabIndex = 1;
//
// LastName
//
this.LastName.DataPropertyName = "LastName";
this.LastName.HeaderText = "LastName";
this.LastName.Name = "LastName";
this.LastName.ReadOnly = true;
//
// FirstName
//
this.FirstName.DataPropertyName = "FirstName";
this.FirstName.HeaderText = "FirstName";
this.FirstName.Name = "FirstName";
this.FirstName.ReadOnly = true;
//
// Title
//
this.Title.DataPropertyName = "Title";
this.Title.HeaderText = "Title";
this.Title.Name = "Title";
this.Title.ReadOnly = true;
//
// Extension
//
this.Extension.DataPropertyName = "Extension";
this.Extension.HeaderText = "Extension";
this.Extension.Name = "Extension";
this.Extension.ReadOnly = true;
//
// Photo
//
this.Photo.DataPropertyName = "Photo";
this.Photo.HeaderText = "Photo";
this.Photo.ImageLayout = System.Windows.Forms.DataGridViewImageCellLayout.Stretch;
this.Photo.Name = "Photo";
this.Photo.ReadOnly = true;
//
// employeesTableAdapter
//
this.employeesTableAdapter.ClearBeforeFill = true;
//
// EmployeesListForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(547, 358);
this.Controls.Add(this.employeesDataGridView);
this.Controls.Add(this.employeesBindingNavigator);
this.Name = "EmployeesListForm";
this.Text = "Employees List UI";
this.Load += new System.EventHandler(this.ViewEditForm_Load);
((System.ComponentModel.ISupportInitialize)(this.employeesBindingNavigator)).EndInit();
this.employeesBindingNavigator.ResumeLayout(false);
this.employeesBindingNavigator.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.employeesBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.northwindDataSet)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.employeesDataGridView)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.BindingNavigator employeesBindingNavigator;
private System.Windows.Forms.ToolStripLabel bindingNavigatorCountItem;
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.DataGridView employeesDataGridView;
private System.Windows.Forms.BindingSource employeesBindingSource;
private NorthwindDataSet northwindDataSet;
private AppliedDataBindingSample.NorthwindDataSetTableAdapters.EmployeesTableAdapter employeesTableAdapter;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripButton addToolStripButton;
private System.Windows.Forms.ToolStripButton updateToolStripButton;
private System.Windows.Forms.ToolStripButton deleteToolStripButton;
private System.Windows.Forms.DataGridViewTextBoxColumn LastName;
private System.Windows.Forms.DataGridViewTextBoxColumn FirstName;
private System.Windows.Forms.DataGridViewTextBoxColumn Title;
private System.Windows.Forms.DataGridViewTextBoxColumn Extension;
private System.Windows.Forms.DataGridViewImageColumn Photo;
}
}