94 lines
3.6 KiB
C#
94 lines
3.6 KiB
C#
namespace SoftwareInstallationView
|
|
{
|
|
partial class FormReportPackageComponents
|
|
{
|
|
/// <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();
|
|
ColumnProduct = new DataGridViewTextBoxColumn();
|
|
ColumnComponent = new DataGridViewTextBoxColumn();
|
|
ColumnCount = new DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// buttonSaveToExcel
|
|
//
|
|
buttonSaveToExcel.Location = new Point(25, 12);
|
|
buttonSaveToExcel.Name = "buttonSaveToExcel";
|
|
buttonSaveToExcel.Size = new Size(171, 24);
|
|
buttonSaveToExcel.TabIndex = 0;
|
|
buttonSaveToExcel.Text = "Сохранить в excel";
|
|
buttonSaveToExcel.UseVisualStyleBackColor = true;
|
|
buttonSaveToExcel.Click += buttonSaveToExcel_Click;
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnProduct, ColumnComponent, ColumnCount });
|
|
dataGridView.Location = new Point(1, 69);
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.Size = new Size(580, 382);
|
|
dataGridView.TabIndex = 1;
|
|
//
|
|
// ColumnProduct
|
|
//
|
|
ColumnProduct.HeaderText = "Изделие";
|
|
ColumnProduct.Name = "ColumnProduct";
|
|
//
|
|
// ColumnComponent
|
|
//
|
|
ColumnComponent.HeaderText = "Компонент";
|
|
ColumnComponent.Name = "ColumnComponent";
|
|
//
|
|
// ColumnCount
|
|
//
|
|
ColumnCount.HeaderText = "Количество";
|
|
ColumnCount.Name = "ColumnCount";
|
|
//
|
|
// FormReportPackageComponents
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(580, 450);
|
|
Controls.Add(dataGridView);
|
|
Controls.Add(buttonSaveToExcel);
|
|
Name = "FormReportPackageComponents";
|
|
Text = "Компоненты по изделиям";
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonSaveToExcel;
|
|
private DataGridView dataGridView;
|
|
private DataGridViewTextBoxColumn ColumnProduct;
|
|
private DataGridViewTextBoxColumn ColumnComponent;
|
|
private DataGridViewTextBoxColumn ColumnCount;
|
|
}
|
|
} |