115 lines
4.5 KiB
C#
115 lines
4.5 KiB
C#
|
namespace PizzeriaView
|
|||
|
{
|
|||
|
partial class FormReportPizzaComponents
|
|||
|
{
|
|||
|
/// <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();
|
|||
|
buttonSaveToExcel = new Button();
|
|||
|
ColumnPizza = new DataGridViewTextBoxColumn();
|
|||
|
ColumnComponent = new DataGridViewTextBoxColumn();
|
|||
|
ColumnCount = new DataGridViewTextBoxColumn();
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// dataGridView
|
|||
|
//
|
|||
|
dataGridView.AllowUserToAddRows = false;
|
|||
|
dataGridView.AllowUserToDeleteRows = false;
|
|||
|
dataGridView.AllowUserToOrderColumns = true;
|
|||
|
dataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
|
|||
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
dataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnPizza, ColumnComponent, ColumnCount });
|
|||
|
dataGridView.Dock = DockStyle.Bottom;
|
|||
|
dataGridView.Location = new Point(0, 60);
|
|||
|
dataGridView.Margin = new Padding(4, 3, 4, 3);
|
|||
|
dataGridView.Name = "dataGridView";
|
|||
|
dataGridView.ReadOnly = true;
|
|||
|
dataGridView.RowHeadersWidth = 51;
|
|||
|
dataGridView.RowTemplate.Height = 29;
|
|||
|
dataGridView.Size = new Size(706, 503);
|
|||
|
dataGridView.TabIndex = 0;
|
|||
|
//
|
|||
|
// buttonSaveToExcel
|
|||
|
//
|
|||
|
buttonSaveToExcel.Location = new Point(17, 17);
|
|||
|
buttonSaveToExcel.Margin = new Padding(4, 3, 4, 3);
|
|||
|
buttonSaveToExcel.Name = "buttonSaveToExcel";
|
|||
|
buttonSaveToExcel.Size = new Size(671, 37);
|
|||
|
buttonSaveToExcel.TabIndex = 1;
|
|||
|
buttonSaveToExcel.Text = "Сохранить в Excel";
|
|||
|
buttonSaveToExcel.UseVisualStyleBackColor = true;
|
|||
|
buttonSaveToExcel.Click += ButtonSaveToExcel_Click;
|
|||
|
//
|
|||
|
// ColumnPizza
|
|||
|
//
|
|||
|
ColumnPizza.FillWeight = 130F;
|
|||
|
ColumnPizza.HeaderText = "Пицца";
|
|||
|
ColumnPizza.MinimumWidth = 6;
|
|||
|
ColumnPizza.Name = "ColumnPizza";
|
|||
|
ColumnPizza.ReadOnly = true;
|
|||
|
//
|
|||
|
// ColumnComponent
|
|||
|
//
|
|||
|
ColumnComponent.FillWeight = 140F;
|
|||
|
ColumnComponent.HeaderText = "Ингредиент";
|
|||
|
ColumnComponent.MinimumWidth = 6;
|
|||
|
ColumnComponent.Name = "ColumnComponent";
|
|||
|
ColumnComponent.ReadOnly = true;
|
|||
|
//
|
|||
|
// ColumnCount
|
|||
|
//
|
|||
|
ColumnCount.FillWeight = 90F;
|
|||
|
ColumnCount.HeaderText = "Количество";
|
|||
|
ColumnCount.MinimumWidth = 6;
|
|||
|
ColumnCount.Name = "ColumnCount";
|
|||
|
ColumnCount.ReadOnly = true;
|
|||
|
//
|
|||
|
// FormReportPizzaComponents
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(10F, 25F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(706, 563);
|
|||
|
Controls.Add(buttonSaveToExcel);
|
|||
|
Controls.Add(dataGridView);
|
|||
|
Margin = new Padding(4, 3, 4, 3);
|
|||
|
Name = "FormReportPizzaComponents";
|
|||
|
Text = "Пицца с ингредиентами";
|
|||
|
Load += FormReportPizzaComponents_Load;
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private DataGridView dataGridView;
|
|||
|
private Button buttonSaveToExcel;
|
|||
|
private DataGridViewTextBoxColumn ColumnPizza;
|
|||
|
private DataGridViewTextBoxColumn ColumnComponent;
|
|||
|
private DataGridViewTextBoxColumn ColumnCount;
|
|||
|
}
|
|||
|
}
|