namespace DataBindingFundamentalsSample { partial class ComplexBindingSourceDataBindingForm { /// /// 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.employeesDataGridView = new System.Windows.Forms.DataGridView(); this.northwindDataSet = new DataBindingFundamentalsSample.NorthwindDataSet(); this.employeesBindingSource = new System.Windows.Forms.BindingSource(this.components); this.employeesTableAdapter = new DataBindingFundamentalsSample.NorthwindDataSetTableAdapters.EmployeesTableAdapter(); 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(); ((System.ComponentModel.ISupportInitialize)(this.employeesDataGridView)).BeginInit(); ((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 = "Employees:"; // // 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(15, 31); this.employeesDataGridView.Name = "employeesDataGridView"; this.employeesDataGridView.Size = new System.Drawing.Size(297, 150); this.employeesDataGridView.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; // // 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"; // // ComplexBindingSourceDataBindingForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(324, 193); this.Controls.Add(this.employeesDataGridView); this.Controls.Add(this.label1); this.Name = "ComplexBindingSourceDataBindingForm"; this.Text = "Complex BindingSource Data Binding"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.complexBindingSourceDataBindingForm_FormClosing); this.Load += new System.EventHandler(this.complexBindingSourceDataBindingForm_Load); ((System.ComponentModel.ISupportInitialize)(this.employeesDataGridView)).EndInit(); ((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.DataGridView employeesDataGridView; 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; } }