namespace AutomobilePlantView { partial class FormReportCarComponents { /// /// 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() { dataGridView = new DataGridView(); buttonSaveToExcel = new Button(); Car = new DataGridViewTextBoxColumn(); Component = new DataGridViewTextBoxColumn(); Count = new DataGridViewTextBoxColumn(); ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); SuspendLayout(); // // dataGridView // dataGridView.AllowUserToAddRows = false; dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridView.Columns.AddRange(new DataGridViewColumn[] { Car, Component, Count }); dataGridView.Location = new Point(12, 43); dataGridView.Name = "dataGridView"; dataGridView.RowTemplate.Height = 25; dataGridView.Size = new Size(776, 395); dataGridView.TabIndex = 0; // // buttonSaveToExcel // buttonSaveToExcel.Location = new Point(12, 12); buttonSaveToExcel.Name = "buttonSaveToExcel"; buttonSaveToExcel.Size = new Size(133, 23); buttonSaveToExcel.TabIndex = 1; buttonSaveToExcel.Text = "Save to Excel"; buttonSaveToExcel.UseVisualStyleBackColor = true; buttonSaveToExcel.Click += buttonSaveToExcel_Click; // // Car // Car.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; Car.HeaderText = "Cars"; Car.Name = "Car"; // // Component // Component.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; Component.HeaderText = "Components"; Component.Name = "Component"; // // Count // Count.HeaderText = "Count"; Count.Name = "Count"; // // FormReportCarComponents // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 450); Controls.Add(buttonSaveToExcel); Controls.Add(dataGridView); Name = "FormReportCarComponents"; Text = "Report car components"; Load += FormReportCarComponents_Load; ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ResumeLayout(false); } #endregion private DataGridView dataGridView; private Button buttonSaveToExcel; private DataGridViewTextBoxColumn Car; private DataGridViewTextBoxColumn Component; private DataGridViewTextBoxColumn Count; } }