103 lines
3.8 KiB
C#
103 lines
3.8 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();
|
|
Flowerr = new DataGridViewTextBoxColumn();
|
|
Component = 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[] { Flowerr, Component, 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;
|
|
//
|
|
// Flowerr
|
|
//
|
|
Flowerr.HeaderText = "Цветок";
|
|
Flowerr.MinimumWidth = 6;
|
|
Flowerr.Name = "Flowerr";
|
|
Flowerr.Width = 250;
|
|
//
|
|
// Component
|
|
//
|
|
Component.HeaderText = "Компонент";
|
|
Component.MinimumWidth = 6;
|
|
Component.Name = "Component";
|
|
Component.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 = "Компоненты цветов";
|
|
Load += FormReportFlowerComponent_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonSaveToExcel;
|
|
private DataGridView dataGridView;
|
|
private DataGridViewTextBoxColumn Flowerr;
|
|
private DataGridViewTextBoxColumn Component;
|
|
private DataGridViewTextBoxColumn Count;
|
|
}
|
|
} |