PIbd-23-Lisov-N.A-SewingDre.../SewingDresses/FormReportDressMaterials.Designer.cs

104 lines
4.5 KiB
C#

namespace SewingDresses
{
partial class FormReportDressMaterials
{
/// <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.MaterialColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DressesColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.AmountColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
this.SuspendLayout();
//
// dataGridView
//
this.dataGridView.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.MaterialColumn,
this.DressesColumn,
this.AmountColumn});
this.dataGridView.Location = new System.Drawing.Point(1, 40);
this.dataGridView.Name = "dataGridView";
this.dataGridView.RowTemplate.Height = 25;
this.dataGridView.Size = new System.Drawing.Size(496, 412);
this.dataGridView.TabIndex = 0;
//
// buttonSaveToExcel
//
this.buttonSaveToExcel.Location = new System.Drawing.Point(1, 4);
this.buttonSaveToExcel.Name = "buttonSaveToExcel";
this.buttonSaveToExcel.Size = new System.Drawing.Size(176, 30);
this.buttonSaveToExcel.TabIndex = 1;
this.buttonSaveToExcel.Text = "Save to Excel";
this.buttonSaveToExcel.UseVisualStyleBackColor = true;
this.buttonSaveToExcel.Click += new System.EventHandler(this.buttonSaveToExcel_Click);
//
// MaterialColumn
//
this.MaterialColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.MaterialColumn.HeaderText = "Material";
this.MaterialColumn.Name = "MaterialColumn";
//
// DressesColumn
//
this.DressesColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.DressesColumn.HeaderText = "Dress";
this.DressesColumn.Name = "DressesColumn";
//
// AmountColumn
//
this.AmountColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.AmountColumn.HeaderText = "Amount";
this.AmountColumn.Name = "AmountColumn";
//
// FormReportDressMaterials
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(498, 450);
this.Controls.Add(this.buttonSaveToExcel);
this.Controls.Add(this.dataGridView);
this.Name = "FormReportDressMaterials";
this.Text = "Materials by dresses";
this.Load += new System.EventHandler(this.FormReportDressMaterials_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
this.ResumeLayout(false);
}
#endregion
private DataGridView dataGridView;
private DataGridViewTextBoxColumn MaterialColumn;
private DataGridViewTextBoxColumn DressesColumn;
private DataGridViewTextBoxColumn AmountColumn;
private Button buttonSaveToExcel;
}
}