PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantView/FormReportCarComponents.Designer.cs

99 lines
3.6 KiB
C#
Raw Normal View History

2024-03-24 19:22:01 +04:00
namespace AutomobilePlantView
{
partial class FormReportCarComponents
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
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;
}
}