115 lines
4.6 KiB
C#
115 lines
4.6 KiB
C#
|
namespace FishFactoryView
|
|||
|
{
|
|||
|
partial class FormReportCannedComponents
|
|||
|
{
|
|||
|
/// <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();
|
|||
|
ColumnCanned = 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[] { ColumnCanned, ColumnComponent, ColumnCount });
|
|||
|
dataGridView.Dock = DockStyle.Bottom;
|
|||
|
dataGridView.Location = new Point(0, 36);
|
|||
|
dataGridView.Margin = new Padding(3, 2, 3, 2);
|
|||
|
dataGridView.Name = "dataGridView";
|
|||
|
dataGridView.ReadOnly = true;
|
|||
|
dataGridView.RowHeadersWidth = 51;
|
|||
|
dataGridView.RowTemplate.Height = 29;
|
|||
|
dataGridView.Size = new Size(494, 302);
|
|||
|
dataGridView.TabIndex = 0;
|
|||
|
//
|
|||
|
// buttonSaveToExcel
|
|||
|
//
|
|||
|
buttonSaveToExcel.Location = new Point(12, 10);
|
|||
|
buttonSaveToExcel.Margin = new Padding(3, 2, 3, 2);
|
|||
|
buttonSaveToExcel.Name = "buttonSaveToExcel";
|
|||
|
buttonSaveToExcel.Size = new Size(470, 22);
|
|||
|
buttonSaveToExcel.TabIndex = 1;
|
|||
|
buttonSaveToExcel.Text = "Сохранить в Excel";
|
|||
|
buttonSaveToExcel.UseVisualStyleBackColor = true;
|
|||
|
buttonSaveToExcel.Click += ButtonSaveToExcel_Click;
|
|||
|
//
|
|||
|
// ColumnCanned
|
|||
|
//
|
|||
|
ColumnCanned.FillWeight = 130F;
|
|||
|
ColumnCanned.HeaderText = "Консерва";
|
|||
|
ColumnCanned.MinimumWidth = 6;
|
|||
|
ColumnCanned.Name = "ColumnCanned";
|
|||
|
ColumnCanned.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;
|
|||
|
//
|
|||
|
// FormReportCannedComponents
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(494, 338);
|
|||
|
Controls.Add(buttonSaveToExcel);
|
|||
|
Controls.Add(dataGridView);
|
|||
|
Margin = new Padding(3, 2, 3, 2);
|
|||
|
Name = "FormReportCannedComponents";
|
|||
|
Text = "Пицца с ингридиентами";
|
|||
|
Load += FormReportCannedComponents_Load;
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private DataGridView dataGridView;
|
|||
|
private Button buttonSaveToExcel;
|
|||
|
private DataGridViewTextBoxColumn ColumnCanned;
|
|||
|
private DataGridViewTextBoxColumn ColumnComponent;
|
|||
|
private DataGridViewTextBoxColumn ColumnCount;
|
|||
|
}
|
|||
|
}
|