104 lines
4.0 KiB
C#
104 lines
4.0 KiB
C#
namespace AircraftPlantView
|
|
{
|
|
partial class FormReportPlaneComponents
|
|
{
|
|
/// <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()
|
|
{
|
|
ButtonSaveToExcel = new Button();
|
|
dataGridView = new DataGridView();
|
|
ColumnComponent = new DataGridViewTextBoxColumn();
|
|
ColumnPlane = new DataGridViewTextBoxColumn();
|
|
ColumnCount = new DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// ButtonSaveToExcel
|
|
//
|
|
ButtonSaveToExcel.BackColor = SystemColors.ActiveBorder;
|
|
ButtonSaveToExcel.Location = new Point(12, 12);
|
|
ButtonSaveToExcel.Name = "ButtonSaveToExcel";
|
|
ButtonSaveToExcel.Size = new Size(206, 29);
|
|
ButtonSaveToExcel.TabIndex = 0;
|
|
ButtonSaveToExcel.Text = "Сохранить в Excel";
|
|
ButtonSaveToExcel.UseVisualStyleBackColor = false;
|
|
ButtonSaveToExcel.Click += ButtonSaveToExcel_Click;
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnComponent, ColumnPlane, ColumnCount });
|
|
dataGridView.Location = new Point(12, 57);
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.RowHeadersWidth = 51;
|
|
dataGridView.RowTemplate.Height = 29;
|
|
dataGridView.Size = new Size(776, 439);
|
|
dataGridView.TabIndex = 1;
|
|
//
|
|
// ColumnComponent
|
|
//
|
|
ColumnComponent.HeaderText = "Изделие";
|
|
ColumnComponent.MinimumWidth = 6;
|
|
ColumnComponent.Name = "ColumnComponent";
|
|
ColumnComponent.Width = 250;
|
|
//
|
|
// ColumnPlane
|
|
//
|
|
ColumnPlane.HeaderText = "Компонент";
|
|
ColumnPlane.MinimumWidth = 6;
|
|
ColumnPlane.Name = "ColumnPlane";
|
|
ColumnPlane.Width = 250;
|
|
//
|
|
// ColumnCount
|
|
//
|
|
ColumnCount.HeaderText = "Количество";
|
|
ColumnCount.MinimumWidth = 6;
|
|
ColumnCount.Name = "ColumnCount";
|
|
ColumnCount.Width = 225;
|
|
//
|
|
// FormReportPlaneComponents
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 508);
|
|
Controls.Add(dataGridView);
|
|
Controls.Add(ButtonSaveToExcel);
|
|
Name = "FormReportPlaneComponents";
|
|
Text = "Компоненты по изделиям";
|
|
Load += FormReportPlaneComponents_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button ButtonSaveToExcel;
|
|
private DataGridView dataGridView;
|
|
private DataGridViewTextBoxColumn ColumnComponent;
|
|
private DataGridViewTextBoxColumn ColumnPlane;
|
|
private DataGridViewTextBoxColumn ColumnCount;
|
|
}
|
|
} |