117 lines
5.2 KiB
C#
117 lines
5.2 KiB
C#
namespace SushiBarView
|
|
{
|
|
partial class FormReportSushiIngredients
|
|
{
|
|
/// <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.buttonSaveToExcel = new System.Windows.Forms.Button();
|
|
this.ColumnSushi = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnIngredient = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.AllowUserToAddRows = false;
|
|
this.dataGridView.AllowUserToDeleteRows = false;
|
|
this.dataGridView.AllowUserToOrderColumns = true;
|
|
this.dataGridView.AllowUserToResizeColumns = false;
|
|
this.dataGridView.AllowUserToResizeRows = false;
|
|
this.dataGridView.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.ColumnSushi,
|
|
this.ColumnIngredient,
|
|
this.ColumnCount});
|
|
this.dataGridView.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.dataGridView.Location = new System.Drawing.Point(0, 47);
|
|
this.dataGridView.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.dataGridView.MultiSelect = false;
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.ReadOnly = true;
|
|
this.dataGridView.RowHeadersVisible = false;
|
|
this.dataGridView.Size = new System.Drawing.Size(616, 510);
|
|
this.dataGridView.TabIndex = 0;
|
|
//
|
|
// buttonSaveToExcel
|
|
//
|
|
this.buttonSaveToExcel.Location = new System.Drawing.Point(14, 14);
|
|
this.buttonSaveToExcel.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.buttonSaveToExcel.Name = "buttonSaveToExcel";
|
|
this.buttonSaveToExcel.Size = new System.Drawing.Size(186, 27);
|
|
this.buttonSaveToExcel.TabIndex = 1;
|
|
this.buttonSaveToExcel.Text = "Сохранить в Excel";
|
|
this.buttonSaveToExcel.UseVisualStyleBackColor = true;
|
|
this.buttonSaveToExcel.Click += new System.EventHandler(this.ButtonSaveToExcel_Click);
|
|
//
|
|
// ColumnSushi
|
|
//
|
|
this.ColumnSushi.HeaderText = "Суши";
|
|
this.ColumnSushi.Name = "ColumnSushi";
|
|
this.ColumnSushi.ReadOnly = true;
|
|
this.ColumnSushi.Width = 200;
|
|
//
|
|
// ColumnIngredient
|
|
//
|
|
this.ColumnIngredient.HeaderText = "Ингредиент";
|
|
this.ColumnIngredient.Name = "ColumnIngredient";
|
|
this.ColumnIngredient.ReadOnly = true;
|
|
this.ColumnIngredient.Width = 200;
|
|
//
|
|
// ColumnCount
|
|
//
|
|
this.ColumnCount.HeaderText = "Количество";
|
|
this.ColumnCount.Name = "ColumnCount";
|
|
this.ColumnCount.ReadOnly = true;
|
|
//
|
|
// FormReportSushiIngredients
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(616, 557);
|
|
this.Controls.Add(this.buttonSaveToExcel);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.Name = "FormReportSushiIngredients";
|
|
this.Text = "Ингредиенты по суши";
|
|
this.Load += new System.EventHandler(this.FormReportSushiIngredients_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView;
|
|
private System.Windows.Forms.Button buttonSaveToExcel;
|
|
private DataGridViewTextBoxColumn ColumnSushi;
|
|
private DataGridViewTextBoxColumn ColumnIngredient;
|
|
private DataGridViewTextBoxColumn ColumnCount;
|
|
}
|
|
} |