103 lines
3.7 KiB
C#
103 lines
3.7 KiB
C#
|
namespace ProjectFlowerShop
|
|||
|
{
|
|||
|
partial class FormReportFlowerComponent
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
buttonSaveToExcel = new Button();
|
|||
|
dataGridView = new DataGridView();
|
|||
|
Component = new DataGridViewTextBoxColumn();
|
|||
|
Flower = new DataGridViewTextBoxColumn();
|
|||
|
Count = new DataGridViewTextBoxColumn();
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// buttonSaveToExcel
|
|||
|
//
|
|||
|
buttonSaveToExcel.Location = new Point(12, 21);
|
|||
|
buttonSaveToExcel.Name = "buttonSaveToExcel";
|
|||
|
buttonSaveToExcel.Size = new Size(207, 29);
|
|||
|
buttonSaveToExcel.TabIndex = 0;
|
|||
|
buttonSaveToExcel.Text = "Сохранить в Excel";
|
|||
|
buttonSaveToExcel.UseVisualStyleBackColor = true;
|
|||
|
buttonSaveToExcel.Click += buttonSaveToExcel_Click;
|
|||
|
//
|
|||
|
// dataGridView
|
|||
|
//
|
|||
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
dataGridView.Columns.AddRange(new DataGridViewColumn[] { Component, Flower, Count });
|
|||
|
dataGridView.Location = new Point(12, 65);
|
|||
|
dataGridView.Name = "dataGridView";
|
|||
|
dataGridView.RowHeadersWidth = 51;
|
|||
|
dataGridView.RowTemplate.Height = 29;
|
|||
|
dataGridView.Size = new Size(812, 359);
|
|||
|
dataGridView.TabIndex = 1;
|
|||
|
//
|
|||
|
// Component
|
|||
|
//
|
|||
|
Component.HeaderText = "Компонент";
|
|||
|
Component.MinimumWidth = 6;
|
|||
|
Component.Name = "Component";
|
|||
|
Component.Width = 250;
|
|||
|
//
|
|||
|
// Flower
|
|||
|
//
|
|||
|
Flower.HeaderText = "Изделие";
|
|||
|
Flower.MinimumWidth = 6;
|
|||
|
Flower.Name = "Flower";
|
|||
|
Flower.Width = 250;
|
|||
|
//
|
|||
|
// Count
|
|||
|
//
|
|||
|
Count.HeaderText = "Количество";
|
|||
|
Count.MinimumWidth = 6;
|
|||
|
Count.Name = "Count";
|
|||
|
Count.Width = 250;
|
|||
|
//
|
|||
|
// FormReportFlowerComponent
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(836, 450);
|
|||
|
Controls.Add(dataGridView);
|
|||
|
Controls.Add(buttonSaveToExcel);
|
|||
|
Name = "FormReportFlowerComponent";
|
|||
|
Text = "FormReportFlowerComponent";
|
|||
|
Load += FormReportFlowerComponent_Load;
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Button buttonSaveToExcel;
|
|||
|
private DataGridView dataGridView;
|
|||
|
private DataGridViewTextBoxColumn Component;
|
|||
|
private DataGridViewTextBoxColumn Flower;
|
|||
|
private DataGridViewTextBoxColumn Count;
|
|||
|
}
|
|||
|
}
|