PIbd-23-Nasyrov-A.G.-Flower.../ProjectFlowerShop/FormReportShopsFlowers.Designer.cs

103 lines
3.7 KiB
C#
Raw Permalink Normal View History

2024-04-04 11:42:42 +04:00
namespace ProjectFlowerShop
{
partial class FormReportShopsFlowers
{
/// <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-04 12:07:16 +04:00
buttonSaveToExcel = new Button();
dataGridView = new DataGridView();
2024-04-04 12:22:03 +04:00
Shop = new DataGridViewTextBoxColumn();
Flower = new DataGridViewTextBoxColumn();
Count = new DataGridViewTextBoxColumn();
2024-04-04 12:07:16 +04:00
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
2024-04-04 11:42:42 +04:00
SuspendLayout();
//
2024-04-04 12:07:16 +04:00
// buttonSaveToExcel
//
buttonSaveToExcel.Location = new Point(12, 12);
buttonSaveToExcel.Name = "buttonSaveToExcel";
buttonSaveToExcel.Size = new Size(168, 29);
buttonSaveToExcel.TabIndex = 0;
buttonSaveToExcel.Text = "Сохранить в Excel";
buttonSaveToExcel.UseVisualStyleBackColor = true;
buttonSaveToExcel.Click += buttonSaveToExcel_Click;
//
// dataGridView
//
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
2024-04-04 12:22:03 +04:00
dataGridView.Columns.AddRange(new DataGridViewColumn[] { Shop, Flower, Count });
2024-04-04 12:07:16 +04:00
dataGridView.Location = new Point(12, 67);
dataGridView.Name = "dataGridView";
dataGridView.RowHeadersWidth = 51;
dataGridView.RowTemplate.Height = 29;
2024-04-04 12:22:03 +04:00
dataGridView.Size = new Size(808, 327);
2024-04-04 12:07:16 +04:00
dataGridView.TabIndex = 1;
//
2024-04-04 12:22:03 +04:00
// Shop
//
Shop.HeaderText = "Магазин";
Shop.MinimumWidth = 6;
Shop.Name = "Shop";
Shop.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;
//
2024-04-04 11:42:42 +04:00
// FormReportShopsFlowers
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
2024-04-04 12:22:03 +04:00
ClientSize = new Size(832, 406);
2024-04-04 12:07:16 +04:00
Controls.Add(dataGridView);
Controls.Add(buttonSaveToExcel);
2024-04-04 11:42:42 +04:00
Name = "FormReportShopsFlowers";
2024-04-04 12:07:16 +04:00
Text = "Загруженность магазинов";
Load += FormReportShopsFlowers_Load;
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
2024-04-04 11:42:42 +04:00
ResumeLayout(false);
}
#endregion
2024-04-04 12:07:16 +04:00
private Button buttonSaveToExcel;
private DataGridView dataGridView;
2024-04-04 12:22:03 +04:00
private DataGridViewTextBoxColumn Shop;
private DataGridViewTextBoxColumn Flower;
private DataGridViewTextBoxColumn Count;
2024-04-04 11:42:42 +04:00
}
}