ISP41_Merkylov_SportMag/WinFormsApp1/ManagerOrder.Designer.cs
2026-05-14 15:24:29 +04:00

111 lines
4.3 KiB
C#

namespace WinFormsApp1
{
partial class ManagerOrder
{
/// <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()
{
dataGridViewProduct = new DataGridView();
label10 = new Label();
ExitButton = new Button();
button1 = new Button();
((System.ComponentModel.ISupportInitialize)dataGridViewProduct).BeginInit();
SuspendLayout();
//
// dataGridViewProduct
//
dataGridViewProduct.AllowUserToAddRows = false;
dataGridViewProduct.AllowUserToDeleteRows = false;
dataGridViewProduct.AllowUserToResizeColumns = false;
dataGridViewProduct.AllowUserToResizeRows = false;
dataGridViewProduct.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
dataGridViewProduct.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.DisplayedCells;
dataGridViewProduct.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridViewProduct.Location = new Point(12, 77);
dataGridViewProduct.Name = "dataGridViewProduct";
dataGridViewProduct.Size = new Size(776, 308);
dataGridViewProduct.TabIndex = 16;
//
// label10
//
label10.AutoSize = true;
label10.Font = new Font("Comic Sans MS", 26.25F, FontStyle.Regular, GraphicsUnit.Point, 204);
label10.Location = new Point(119, 9);
label10.Name = "label10";
label10.Size = new Size(561, 49);
label10.TabIndex = 34;
label10.Text = "ГЛАВНАЯ ФОРМА МЕНЕДЖЕРА";
//
// ExitButton
//
ExitButton.BackColor = Color.Red;
ExitButton.Location = new Point(757, 9);
ExitButton.Name = "ExitButton";
ExitButton.Size = new Size(31, 26);
ExitButton.TabIndex = 35;
ExitButton.Text = "X";
ExitButton.UseVisualStyleBackColor = false;
ExitButton.Click += ExitButton_Click;
//
// button1
//
button1.BackColor = Color.Red;
button1.Font = new Font("Comic Sans MS", 9F, FontStyle.Regular, GraphicsUnit.Point, 204);
button1.Location = new Point(697, 406);
button1.Name = "button1";
button1.Size = new Size(75, 23);
button1.TabIndex = 36;
button1.Text = "Назад";
button1.UseVisualStyleBackColor = false;
button1.Click += button1_Click;
//
// ManagerOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.FromArgb(192, 237, 215);
ClientSize = new Size(800, 450);
Controls.Add(button1);
Controls.Add(ExitButton);
Controls.Add(label10);
Controls.Add(dataGridViewProduct);
FormBorderStyle = FormBorderStyle.None;
Name = "ManagerOrder";
Text = "ManagerOrder";
Load += ManagerOrder_Load;
((System.ComponentModel.ISupportInitialize)dataGridViewProduct).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private DataGridView dataGridViewProduct;
private Label label10;
private Button ExitButton;
private Button button1;
}
}