PIbd-22_Chubykina_P.P._Conf.../Confectionery/ConfectioneryView/FormReportPastryComponents.Designer.cs

107 lines
4.5 KiB
C#
Raw Normal View History

2024-04-08 21:48:15 +04:00
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()
{
2024-04-08 22:00:27 +04:00
this.buttonSaveToExcel = new System.Windows.Forms.Button();
2024-04-09 15:45:07 +04:00
this.dataGridView = new System.Windows.Forms.DataGridView();
2024-04-08 22:00:27 +04:00
this.ColumnPastry = new System.Windows.Forms.DataGridViewTextBoxColumn();
2024-04-20 15:51:24 +04:00
this.ColumnComponent = new System.Windows.Forms.DataGridViewTextBoxColumn();
2024-04-08 22:00:27 +04:00
this.ColumnCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
2024-04-09 15:45:07 +04:00
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
2024-04-08 22:00:27 +04:00
this.SuspendLayout();
//
// buttonSaveToExcel
//
this.buttonSaveToExcel.Location = new System.Drawing.Point(12, 12);
this.buttonSaveToExcel.Name = "buttonSaveToExcel";
this.buttonSaveToExcel.Size = new System.Drawing.Size(179, 36);
this.buttonSaveToExcel.TabIndex = 0;
this.buttonSaveToExcel.Text = "Сохранить в Excel";
this.buttonSaveToExcel.UseVisualStyleBackColor = true;
2024-04-09 15:45:07 +04:00
this.buttonSaveToExcel.Click += new System.EventHandler(this.ButtonSaveToExcel_Click);
2024-04-08 22:00:27 +04:00
//
2024-04-09 15:45:07 +04:00
// dataGridView
2024-04-08 22:00:27 +04:00
//
2024-04-09 15:45:07 +04:00
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
2024-04-08 22:00:27 +04:00
this.ColumnPastry,
2024-04-20 15:51:24 +04:00
this.ColumnComponent,
2024-04-08 22:00:27 +04:00
this.ColumnCount});
2024-04-09 15:45:07 +04:00
this.dataGridView.Location = new System.Drawing.Point(13, 64);
this.dataGridView.Name = "dataGridView";
this.dataGridView.RowHeadersWidth = 51;
this.dataGridView.RowTemplate.Height = 29;
this.dataGridView.Size = new System.Drawing.Size(776, 541);
this.dataGridView.TabIndex = 1;
2024-04-08 22:00:27 +04:00
//
// ColumnPastry
//
this.ColumnPastry.HeaderText = "Выпечка";
this.ColumnPastry.MinimumWidth = 6;
this.ColumnPastry.Name = "ColumnPastry";
2024-04-09 15:45:07 +04:00
this.ColumnPastry.Width = 150;
2024-04-08 22:00:27 +04:00
//
2024-04-20 15:51:24 +04:00
// ColumnComponent
//
this.ColumnComponent.HeaderText = "Компонент";
this.ColumnComponent.MinimumWidth = 6;
this.ColumnComponent.Name = "ColumnComponent";
this.ColumnComponent.Width = 150;
//
2024-04-08 22:00:27 +04:00
// ColumnCount
//
this.ColumnCount.HeaderText = "Количество";
this.ColumnCount.MinimumWidth = 6;
this.ColumnCount.Name = "ColumnCount";
2024-04-09 15:45:07 +04:00
this.ColumnCount.Width = 150;
2024-04-08 22:00:27 +04:00
//
// FormReportPastryComponents
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
2024-04-08 21:48:15 +04:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2024-04-08 22:00:27 +04:00
this.ClientSize = new System.Drawing.Size(800, 617);
2024-04-09 15:45:07 +04:00
this.Controls.Add(this.dataGridView);
2024-04-08 22:00:27 +04:00
this.Controls.Add(this.buttonSaveToExcel);
this.Name = "FormReportPastryComponents";
2024-04-20 15:51:24 +04:00
this.Text = "Компоненты по изделиям";
2024-04-09 15:45:07 +04:00
this.Load += new System.EventHandler(this.FormReportPastryComponents_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
2024-04-08 22:00:27 +04:00
this.ResumeLayout(false);
2024-04-08 21:48:15 +04:00
}
#endregion
2024-04-08 22:00:27 +04:00
private Button buttonSaveToExcel;
2024-04-09 15:45:07 +04:00
private DataGridView dataGridView;
2024-04-08 22:00:27 +04:00
private DataGridViewTextBoxColumn ColumnPastry;
2024-04-20 15:51:24 +04:00
private DataGridViewTextBoxColumn ColumnComponent;
2024-04-08 22:00:27 +04:00
private DataGridViewTextBoxColumn ColumnCount;
2024-04-08 21:48:15 +04:00
}
}