in Blog-OptionalPackages/MyEmployees-ModificationPackages/MyEmployees/Form1.Designer.cs [29:135]
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.EmployeeId = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Email = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.employeeBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.exportMenu = new System.Windows.Forms.ToolStripMenuItem();
this.exportAsCsvButton = new System.Windows.Forms.ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.employeeBindingSource)).BeginInit();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AutoGenerateColumns = false;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.EmployeeId,
this.dataGridViewTextBoxColumn2,
this.dataGridViewTextBoxColumn3,
this.Email});
this.dataGridView1.DataSource = this.employeeBindingSource;
this.dataGridView1.Location = new System.Drawing.Point(12, 46);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.Size = new System.Drawing.Size(776, 379);
this.dataGridView1.TabIndex = 0;
//
// EmployeeId
//
this.EmployeeId.DataPropertyName = "EmployeeId";
this.EmployeeId.HeaderText = "EmployeeId";
this.EmployeeId.Name = "EmployeeId";
//
// dataGridViewTextBoxColumn2
//
this.dataGridViewTextBoxColumn2.DataPropertyName = "FirstName";
this.dataGridViewTextBoxColumn2.HeaderText = "FirstName";
this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
//
// dataGridViewTextBoxColumn3
//
this.dataGridViewTextBoxColumn3.DataPropertyName = "LastName";
this.dataGridViewTextBoxColumn3.HeaderText = "LastName";
this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
//
// Email
//
this.Email.DataPropertyName = "Email";
this.Email.HeaderText = "Email";
this.Email.Name = "Email";
//
// employeeBindingSource
//
this.employeeBindingSource.DataSource = typeof(MyEmployees.Entities.Employee);
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.exportMenu});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(800, 24);
this.menuStrip1.TabIndex = 1;
this.menuStrip1.Text = "menuStrip1";
//
// exportMenu
//
this.exportMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.exportAsCsvButton});
this.exportMenu.Name = "exportMenu";
this.exportMenu.Size = new System.Drawing.Size(53, 20);
this.exportMenu.Text = "Export";
//
// exportAsCsvButton
//
this.exportAsCsvButton.Name = "exportAsCsvButton";
this.exportAsCsvButton.Size = new System.Drawing.Size(146, 22);
this.exportAsCsvButton.Text = "Export as CSV";
this.exportAsCsvButton.Click += new System.EventHandler(this.exportAsCSVToolStripMenuItem_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.Text = "MyEmployees";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.employeeBindingSource)).EndInit();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}