108 lines
4.6 KiB
C#
108 lines
4.6 KiB
C#
namespace FoodOrders
|
|
{
|
|
partial class FormReportDishComponents
|
|
{
|
|
/// <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.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.ComponentColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.DishColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.CountColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ButtonSave = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.AllowUserToAddRows = false;
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.ComponentColumn,
|
|
this.DishColumn,
|
|
this.CountColumn});
|
|
this.dataGridView.Location = new System.Drawing.Point(1, 71);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowHeadersWidth = 51;
|
|
this.dataGridView.RowTemplate.Height = 29;
|
|
this.dataGridView.Size = new System.Drawing.Size(797, 378);
|
|
this.dataGridView.TabIndex = 0;
|
|
//
|
|
// ComponentColumn
|
|
//
|
|
this.ComponentColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.ComponentColumn.HeaderText = "Компонент";
|
|
this.ComponentColumn.MinimumWidth = 6;
|
|
this.ComponentColumn.Name = "ComponentColumn";
|
|
//
|
|
// DishColumn
|
|
//
|
|
this.DishColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.DishColumn.HeaderText = "Блюдо";
|
|
this.DishColumn.MinimumWidth = 6;
|
|
this.DishColumn.Name = "DishColumn";
|
|
//
|
|
// CountColumn
|
|
//
|
|
this.CountColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.CountColumn.HeaderText = "Количество";
|
|
this.CountColumn.MinimumWidth = 6;
|
|
this.CountColumn.Name = "CountColumn";
|
|
//
|
|
// ButtonSave
|
|
//
|
|
this.ButtonSave.Location = new System.Drawing.Point(12, 24);
|
|
this.ButtonSave.Name = "ButtonSave";
|
|
this.ButtonSave.Size = new System.Drawing.Size(181, 29);
|
|
this.ButtonSave.TabIndex = 1;
|
|
this.ButtonSave.Text = "Сохранить в Excel";
|
|
this.ButtonSave.UseVisualStyleBackColor = true;
|
|
this.ButtonSave.Click += new System.EventHandler(this.ButtonSaveToExcel_Click);
|
|
//
|
|
// FormReportDishComponents
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.ButtonSave);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Name = "FormReportDishComponents";
|
|
this.Text = "FormReportDishComponents";
|
|
this.Load += new System.EventHandler(this.FormReportDishComponents_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView;
|
|
private DataGridViewTextBoxColumn ComponentColumn;
|
|
private DataGridViewTextBoxColumn DishColumn;
|
|
private DataGridViewTextBoxColumn CountColumn;
|
|
private Button ButtonSave;
|
|
}
|
|
} |