103 lines
3.8 KiB
C#
103 lines
3.8 KiB
C#
|
namespace SewingDressesView
|
|||
|
{
|
|||
|
partial class ReportDressComponentsForm
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
buttonSave = new Button();
|
|||
|
dataGridView = new DataGridView();
|
|||
|
ColumnDress = new DataGridViewTextBoxColumn();
|
|||
|
ColumnComponent = new DataGridViewTextBoxColumn();
|
|||
|
ColumnCount = new DataGridViewTextBoxColumn();
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Location = new Point(12, 12);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(152, 29);
|
|||
|
buttonSave.TabIndex = 0;
|
|||
|
buttonSave.Text = "Сохранить в Excel";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += ButtonSaveToExcel_Click;
|
|||
|
//
|
|||
|
// dataGridView
|
|||
|
//
|
|||
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
dataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnDress, ColumnComponent, ColumnCount });
|
|||
|
dataGridView.Location = new Point(12, 69);
|
|||
|
dataGridView.Name = "dataGridView";
|
|||
|
dataGridView.RowHeadersWidth = 51;
|
|||
|
dataGridView.RowTemplate.Height = 29;
|
|||
|
dataGridView.Size = new Size(776, 369);
|
|||
|
dataGridView.TabIndex = 1;
|
|||
|
//
|
|||
|
// ColumnDress
|
|||
|
//
|
|||
|
ColumnDress.HeaderText = "Платье";
|
|||
|
ColumnDress.MinimumWidth = 6;
|
|||
|
ColumnDress.Name = "ColumnDress";
|
|||
|
ColumnDress.Width = 125;
|
|||
|
//
|
|||
|
// ColumnComponent
|
|||
|
//
|
|||
|
ColumnComponent.HeaderText = "Компонент";
|
|||
|
ColumnComponent.MinimumWidth = 6;
|
|||
|
ColumnComponent.Name = "ColumnComponent";
|
|||
|
ColumnComponent.Width = 125;
|
|||
|
//
|
|||
|
// ColumnCount
|
|||
|
//
|
|||
|
ColumnCount.HeaderText = "Количество";
|
|||
|
ColumnCount.MinimumWidth = 6;
|
|||
|
ColumnCount.Name = "ColumnCount";
|
|||
|
ColumnCount.Width = 125;
|
|||
|
//
|
|||
|
// ReportDressComponentsForm
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(800, 450);
|
|||
|
Controls.Add(dataGridView);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Name = "ReportDressComponentsForm";
|
|||
|
Text = "Форма отчет платья / компоненты";
|
|||
|
Load += FormReportProductComponents_Load;
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Button buttonSave;
|
|||
|
private DataGridView dataGridView;
|
|||
|
private DataGridViewTextBoxColumn ColumnDress;
|
|||
|
private DataGridViewTextBoxColumn ColumnComponent;
|
|||
|
private DataGridViewTextBoxColumn ColumnCount;
|
|||
|
}
|
|||
|
}
|