namespace ProjectFlowerShop { partial class FormReportShopsFlowers { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { buttonSaveToExcel = new Button(); dataGridView = new DataGridView(); Shop = new DataGridViewTextBoxColumn(); Flower = new DataGridViewTextBoxColumn(); Count = new DataGridViewTextBoxColumn(); ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); SuspendLayout(); // // 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; dataGridView.Columns.AddRange(new DataGridViewColumn[] { Shop, Flower, Count }); dataGridView.Location = new Point(12, 67); dataGridView.Name = "dataGridView"; dataGridView.RowHeadersWidth = 51; dataGridView.RowTemplate.Height = 29; dataGridView.Size = new Size(808, 327); dataGridView.TabIndex = 1; // // 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; // // FormReportShopsFlowers // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(832, 406); Controls.Add(dataGridView); Controls.Add(buttonSaveToExcel); Name = "FormReportShopsFlowers"; Text = "Загруженность магазинов"; Load += FormReportShopsFlowers_Load; ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ResumeLayout(false); } #endregion private Button buttonSaveToExcel; private DataGridView dataGridView; private DataGridViewTextBoxColumn Shop; private DataGridViewTextBoxColumn Flower; private DataGridViewTextBoxColumn Count; } }