110 lines
4.4 KiB
C#
110 lines
4.4 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()
|
|||
|
{
|
|||
|
dataGridView = new DataGridView();
|
|||
|
ColumnPlane = new DataGridViewTextBoxColumn();
|
|||
|
ColumnComponent = new DataGridViewTextBoxColumn();
|
|||
|
ColumnCount = new DataGridViewTextBoxColumn();
|
|||
|
buttonSaveToExcel = new Button();
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// dataGridView
|
|||
|
//
|
|||
|
dataGridView.AllowUserToAddRows = false;
|
|||
|
dataGridView.AllowUserToDeleteRows = false;
|
|||
|
dataGridView.BackgroundColor = Color.White;
|
|||
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
dataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnPlane, ColumnComponent, ColumnCount });
|
|||
|
dataGridView.Dock = DockStyle.Bottom;
|
|||
|
dataGridView.GridColor = Color.Black;
|
|||
|
dataGridView.Location = new Point(0, 29);
|
|||
|
dataGridView.MultiSelect = false;
|
|||
|
dataGridView.Name = "dataGridView";
|
|||
|
dataGridView.ReadOnly = true;
|
|||
|
dataGridView.RowTemplate.Height = 25;
|
|||
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|||
|
dataGridView.Size = new Size(584, 332);
|
|||
|
dataGridView.TabIndex = 0;
|
|||
|
//
|
|||
|
// ColumnPlane
|
|||
|
//
|
|||
|
ColumnPlane.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|||
|
ColumnPlane.HeaderText = "Изделие";
|
|||
|
ColumnPlane.Name = "ColumnPlane";
|
|||
|
ColumnPlane.ReadOnly = true;
|
|||
|
//
|
|||
|
// ColumnComponent
|
|||
|
//
|
|||
|
ColumnComponent.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|||
|
ColumnComponent.HeaderText = "Компонент";
|
|||
|
ColumnComponent.Name = "ColumnComponent";
|
|||
|
ColumnComponent.ReadOnly = true;
|
|||
|
//
|
|||
|
// ColumnCount
|
|||
|
//
|
|||
|
ColumnCount.HeaderText = "Количество";
|
|||
|
ColumnCount.Name = "ColumnCount";
|
|||
|
ColumnCount.ReadOnly = true;
|
|||
|
//
|
|||
|
// buttonSaveToExcel
|
|||
|
//
|
|||
|
buttonSaveToExcel.Dock = DockStyle.Top;
|
|||
|
buttonSaveToExcel.Location = new Point(0, 0);
|
|||
|
buttonSaveToExcel.Name = "buttonSaveToExcel";
|
|||
|
buttonSaveToExcel.Size = new Size(584, 23);
|
|||
|
buttonSaveToExcel.TabIndex = 1;
|
|||
|
buttonSaveToExcel.Text = "Сохранить в Excel";
|
|||
|
buttonSaveToExcel.UseVisualStyleBackColor = true;
|
|||
|
buttonSaveToExcel.Click += buttonSaveToExcel_Click;
|
|||
|
//
|
|||
|
// FormReportPlaneComponents
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(584, 361);
|
|||
|
Controls.Add(buttonSaveToExcel);
|
|||
|
Controls.Add(dataGridView);
|
|||
|
Name = "FormReportPlaneComponents";
|
|||
|
Text = "Изделия с компонентами";
|
|||
|
Load += FormReportPlaneComponents_Load;
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private DataGridView dataGridView;
|
|||
|
private DataGridViewTextBoxColumn ColumnPlane;
|
|||
|
private DataGridViewTextBoxColumn ColumnComponent;
|
|||
|
private DataGridViewTextBoxColumn ColumnCount;
|
|||
|
private Button buttonSaveToExcel;
|
|||
|
}
|
|||
|
}
|