SUBD_PIbd-21_Balberova_D.N./BeautySaloon/BeautySaloonView/FormMain.Designer.cs

161 lines
8.1 KiB
C#
Raw Normal View History

2023-03-27 23:58:06 +04:00
namespace BeautySaloonView
{
2023-03-28 17:32:55 +04:00
partial class FormMain
2023-03-27 23:58:06 +04:00
{
/// <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()
{
2023-03-28 21:24:52 +04:00
this.dataGridView = new System.Windows.Forms.DataGridView();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.справочникиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.должностиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.услугиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.сотрудникиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.клиентыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.buttonUpdate = new System.Windows.Forms.Button();
2023-03-30 02:29:40 +04:00
this.buttonTest = new System.Windows.Forms.Button();
2023-03-28 21:24:52 +04:00
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// dataGridView
//
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView.Dock = System.Windows.Forms.DockStyle.Left;
this.dataGridView.Location = new System.Drawing.Point(0, 24);
this.dataGridView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.dataGridView.Name = "dataGridView";
this.dataGridView.RowHeadersWidth = 51;
this.dataGridView.RowTemplate.Height = 29;
2023-03-29 20:00:53 +04:00
this.dataGridView.Size = new System.Drawing.Size(911, 515);
2023-03-28 21:24:52 +04:00
this.dataGridView.TabIndex = 8;
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.справочникиToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(1037, 24);
this.menuStrip1.TabIndex = 9;
this.menuStrip1.Text = "menuStrip1";
//
// справочникиToolStripMenuItem
//
this.справочникиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.должностиToolStripMenuItem,
this.услугиToolStripMenuItem,
this.сотрудникиToolStripMenuItem,
this.клиентыToolStripMenuItem});
this.справочникиToolStripMenuItem.Name = "справочникиToolStripMenuItem";
this.справочникиToolStripMenuItem.Size = new System.Drawing.Size(94, 20);
this.справочникиToolStripMenuItem.Text = "Справочники";
//
// должностиToolStripMenuItem
//
this.должностиToolStripMenuItem.Name = олжностиToolStripMenuItem";
2023-03-29 20:00:53 +04:00
this.должностиToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
2023-03-28 21:24:52 +04:00
this.должностиToolStripMenuItem.Text = "Должности";
2023-03-29 20:00:53 +04:00
this.должностиToolStripMenuItem.Click += new System.EventHandler(this.PositionsToolStripMenuItem_Click);
2023-03-28 21:24:52 +04:00
//
// услугиToolStripMenuItem
//
this.услугиToolStripMenuItem.Name = "услугиToolStripMenuItem";
2023-03-29 20:00:53 +04:00
this.услугиToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
2023-03-28 21:24:52 +04:00
this.услугиToolStripMenuItem.Text = "Услуги";
2023-03-29 20:00:53 +04:00
this.услугиToolStripMenuItem.Click += new System.EventHandler(this.ServicesToolStripMenuItem_Click);
2023-03-28 21:24:52 +04:00
//
// сотрудникиToolStripMenuItem
//
this.сотрудникиToolStripMenuItem.Name = "сотрудникиToolStripMenuItem";
2023-03-29 20:00:53 +04:00
this.сотрудникиToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
2023-03-28 21:24:52 +04:00
this.сотрудникиToolStripMenuItem.Text = "Сотрудники";
2023-03-29 20:00:53 +04:00
this.сотрудникиToolStripMenuItem.Click += new System.EventHandler(this.EmployeesToolStripMenuItem_Click);
2023-03-28 21:24:52 +04:00
//
// клиентыToolStripMenuItem
//
this.клиентыToolStripMenuItem.Name = "клиентыToolStripMenuItem";
2023-03-29 20:00:53 +04:00
this.клиентыToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
2023-03-28 21:24:52 +04:00
this.клиентыToolStripMenuItem.Text = "Клиенты";
2023-03-29 20:00:53 +04:00
this.клиентыToolStripMenuItem.Click += new System.EventHandler(this.ClientsToolStripMenuItem_Click);
2023-03-28 21:24:52 +04:00
//
// buttonUpdate
//
2023-03-30 02:29:40 +04:00
this.buttonUpdate.Location = new System.Drawing.Point(917, 225);
2023-03-28 21:24:52 +04:00
this.buttonUpdate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonUpdate.Name = "buttonUpdate";
this.buttonUpdate.Size = new System.Drawing.Size(116, 58);
this.buttonUpdate.TabIndex = 17;
this.buttonUpdate.Text = "Обновить";
this.buttonUpdate.UseVisualStyleBackColor = true;
2023-03-29 20:00:53 +04:00
this.buttonUpdate.Click += new System.EventHandler(this.ButtonRef_Click);
2023-03-28 21:24:52 +04:00
//
2023-03-30 02:29:40 +04:00
// buttonTest
//
this.buttonTest.Location = new System.Drawing.Point(917, 287);
this.buttonTest.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonTest.Name = "buttonTest";
this.buttonTest.Size = new System.Drawing.Size(116, 58);
this.buttonTest.TabIndex = 18;
this.buttonTest.Text = "Тесты";
this.buttonTest.UseVisualStyleBackColor = true;
this.buttonTest.Click += new System.EventHandler(this.ButtonTest_Click);
//
2023-03-28 21:24:52 +04:00
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
2023-03-27 23:58:06 +04:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2023-03-28 21:24:52 +04:00
this.ClientSize = new System.Drawing.Size(1037, 539);
2023-03-30 02:29:40 +04:00
this.Controls.Add(this.buttonTest);
2023-03-28 21:24:52 +04:00
this.Controls.Add(this.buttonUpdate);
this.Controls.Add(this.dataGridView);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "FormMain";
this.Text = "Салон красоты";
2023-03-29 20:00:53 +04:00
this.Load += new System.EventHandler(this.FormMain_Load);
2023-03-28 21:24:52 +04:00
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
2023-03-27 23:58:06 +04:00
}
#endregion
2023-03-28 21:24:52 +04:00
private DataGridView dataGridView;
private MenuStrip menuStrip1;
private ToolStripMenuItem справочникиToolStripMenuItem;
private ToolStripMenuItem должностиToolStripMenuItem;
private ToolStripMenuItem услугиToolStripMenuItem;
private ToolStripMenuItem сотрудникиToolStripMenuItem;
private ToolStripMenuItem клиентыToolStripMenuItem;
private Button buttonUpdate;
private Button buttonCreateOrder;
2023-03-30 02:29:40 +04:00
private Button buttonTest;
2023-03-27 23:58:06 +04:00
}
}