100 lines
4.0 KiB
C#
100 lines
4.0 KiB
C#
namespace ConfectioneryView
|
|
{
|
|
partial class FormReportPastryComponents
|
|
{
|
|
/// <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();
|
|
ColumnPastry = new DataGridViewTextBoxColumn();
|
|
ColumnCount = new DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// buttonSaveToExcel
|
|
//
|
|
buttonSaveToExcel.Location = new Point(12, 12);
|
|
buttonSaveToExcel.Name = "buttonSaveToExcel";
|
|
buttonSaveToExcel.Size = new Size(172, 25);
|
|
buttonSaveToExcel.TabIndex = 0;
|
|
buttonSaveToExcel.Text = "Сохранить в Excel";
|
|
buttonSaveToExcel.UseVisualStyleBackColor = true;
|
|
buttonSaveToExcel.Click += ButtonSaveToExcel_Click;
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnComponent, ColumnPastry, ColumnCount });
|
|
dataGridView.Location = new Point(1, 43);
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.RowHeadersVisible = false;
|
|
dataGridView.Size = new Size(581, 406);
|
|
dataGridView.TabIndex = 1;
|
|
//
|
|
// ColumnComponent
|
|
//
|
|
ColumnComponent.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
ColumnComponent.HeaderText = "Компонент";
|
|
ColumnComponent.Name = "ColumnComponent";
|
|
//
|
|
// ColumnPastry
|
|
//
|
|
ColumnPastry.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
ColumnPastry.HeaderText = "Кондитерское изделие";
|
|
ColumnPastry.Name = "ColumnPastry";
|
|
//
|
|
// ColumnCount
|
|
//
|
|
ColumnCount.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
ColumnCount.FillWeight = 60F;
|
|
ColumnCount.HeaderText = "Количество";
|
|
ColumnCount.Name = "ColumnCount";
|
|
//
|
|
// FormReportPastryComponents
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(581, 450);
|
|
Controls.Add(dataGridView);
|
|
Controls.Add(buttonSaveToExcel);
|
|
Name = "FormReportPastryComponents";
|
|
Text = "Компоненты по кондитерским изделиям";
|
|
Load += FormReportPastryComponents_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonSaveToExcel;
|
|
private DataGridView dataGridView;
|
|
private DataGridViewTextBoxColumn ColumnComponent;
|
|
private DataGridViewTextBoxColumn ColumnPastry;
|
|
private DataGridViewTextBoxColumn ColumnCount;
|
|
}
|
|
} |