104 lines
4.4 KiB
C#
104 lines
4.4 KiB
C#
namespace ComputersShop
|
|
{
|
|
partial class FormReportComputerComponents
|
|
{
|
|
/// <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()
|
|
{
|
|
this.ButtonSaveToExcel = new System.Windows.Forms.Button();
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.ColumnComponent = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnComputer = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// ButtonSaveToExcel
|
|
//
|
|
this.ButtonSaveToExcel.Location = new System.Drawing.Point(12, 12);
|
|
this.ButtonSaveToExcel.Name = "ButtonSaveToExcel";
|
|
this.ButtonSaveToExcel.Size = new System.Drawing.Size(186, 37);
|
|
this.ButtonSaveToExcel.TabIndex = 0;
|
|
this.ButtonSaveToExcel.Text = "Сохранить в Excel";
|
|
this.ButtonSaveToExcel.UseVisualStyleBackColor = true;
|
|
this.ButtonSaveToExcel.Click += new System.EventHandler(this.ButtonSaveToExcel_Click);
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.ColumnComponent,
|
|
this.ColumnComputer,
|
|
this.ColumnCount});
|
|
this.dataGridView.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.dataGridView.Location = new System.Drawing.Point(0, 55);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowTemplate.Height = 25;
|
|
this.dataGridView.Size = new System.Drawing.Size(643, 487);
|
|
this.dataGridView.TabIndex = 1;
|
|
//
|
|
// ColumnComponent
|
|
//
|
|
this.ColumnComponent.HeaderText = "Компонент";
|
|
this.ColumnComponent.Name = "ColumnComponent";
|
|
this.ColumnComponent.Width = 200;
|
|
//
|
|
// ColumnComputer
|
|
//
|
|
this.ColumnComputer.HeaderText = "Изделие";
|
|
this.ColumnComputer.Name = "ColumnComputer";
|
|
this.ColumnComputer.Width = 200;
|
|
//
|
|
// ColumnCount
|
|
//
|
|
this.ColumnCount.HeaderText = "Количество";
|
|
this.ColumnCount.Name = "ColumnCount";
|
|
this.ColumnCount.Width = 200;
|
|
//
|
|
// FormReportComputerComponents
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(643, 542);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Controls.Add(this.ButtonSaveToExcel);
|
|
this.Name = "FormReportComputerComponents";
|
|
this.Text = "FormReportComputerComponents";
|
|
this.Load += new System.EventHandler(this.FormReportComputerComponents_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button ButtonSaveToExcel;
|
|
private DataGridView dataGridView;
|
|
private DataGridViewTextBoxColumn ColumnComponent;
|
|
private DataGridViewTextBoxColumn ColumnComputer;
|
|
private DataGridViewTextBoxColumn ColumnCount;
|
|
}
|
|
} |