2023-05-06 15:54:44 +04:00
|
|
|
|
namespace BookShopView
|
|
|
|
|
{
|
|
|
|
|
partial class FormMain
|
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
|
|
|
|
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|
|
|
|
this.справочникиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2023-05-06 22:24:09 +04:00
|
|
|
|
this.AuthorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.BooksToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2023-05-06 15:54:44 +04:00
|
|
|
|
this.ClientsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2023-05-06 22:24:09 +04:00
|
|
|
|
this.GenresToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2023-05-06 15:54:44 +04:00
|
|
|
|
this.ComponentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.ComponentGiftsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.OrdersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
|
|
|
this.buttonCreateOrder = new System.Windows.Forms.Button();
|
|
|
|
|
this.buttonRef = new System.Windows.Forms.Button();
|
2023-05-10 20:20:14 +04:00
|
|
|
|
this.testsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2023-05-06 15:54:44 +04:00
|
|
|
|
this.menuStrip1.SuspendLayout();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// menuStrip1
|
|
|
|
|
//
|
|
|
|
|
this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
|
|
|
|
|
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(1367, 28);
|
|
|
|
|
this.menuStrip1.TabIndex = 0;
|
|
|
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
|
|
|
//
|
|
|
|
|
// справочникиToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.справочникиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
2023-05-06 22:24:09 +04:00
|
|
|
|
this.AuthorsToolStripMenuItem,
|
|
|
|
|
this.BooksToolStripMenuItem,
|
2023-05-06 15:54:44 +04:00
|
|
|
|
this.ClientsToolStripMenuItem,
|
2023-05-10 20:20:14 +04:00
|
|
|
|
this.GenresToolStripMenuItem,
|
|
|
|
|
this.testsToolStripMenuItem});
|
2023-05-06 15:54:44 +04:00
|
|
|
|
this.справочникиToolStripMenuItem.Name = "справочникиToolStripMenuItem";
|
|
|
|
|
this.справочникиToolStripMenuItem.Size = new System.Drawing.Size(117, 24);
|
|
|
|
|
this.справочникиToolStripMenuItem.Text = "Справочники";
|
|
|
|
|
//
|
2023-05-06 22:24:09 +04:00
|
|
|
|
// AuthorsToolStripMenuItem
|
2023-05-06 15:54:44 +04:00
|
|
|
|
//
|
2023-05-06 22:24:09 +04:00
|
|
|
|
this.AuthorsToolStripMenuItem.Name = "AuthorsToolStripMenuItem";
|
2023-05-10 20:20:14 +04:00
|
|
|
|
this.AuthorsToolStripMenuItem.Size = new System.Drawing.Size(224, 26);
|
2023-05-06 22:24:09 +04:00
|
|
|
|
this.AuthorsToolStripMenuItem.Text = "Авторы";
|
|
|
|
|
this.AuthorsToolStripMenuItem.Click += new System.EventHandler(this.AuthorsToolStripMenuItem_Click);
|
2023-05-06 15:54:44 +04:00
|
|
|
|
//
|
2023-05-06 22:24:09 +04:00
|
|
|
|
// BooksToolStripMenuItem
|
2023-05-06 15:54:44 +04:00
|
|
|
|
//
|
2023-05-06 22:24:09 +04:00
|
|
|
|
this.BooksToolStripMenuItem.Name = "BooksToolStripMenuItem";
|
2023-05-10 20:20:14 +04:00
|
|
|
|
this.BooksToolStripMenuItem.Size = new System.Drawing.Size(224, 26);
|
2023-05-06 22:24:09 +04:00
|
|
|
|
this.BooksToolStripMenuItem.Text = "Книги";
|
|
|
|
|
this.BooksToolStripMenuItem.Click += new System.EventHandler(this.BooksToolStripMenuItem_Click);
|
2023-05-06 15:54:44 +04:00
|
|
|
|
//
|
|
|
|
|
// ClientsToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.ClientsToolStripMenuItem.Name = "ClientsToolStripMenuItem";
|
2023-05-10 20:20:14 +04:00
|
|
|
|
this.ClientsToolStripMenuItem.Size = new System.Drawing.Size(224, 26);
|
2023-05-06 15:54:44 +04:00
|
|
|
|
this.ClientsToolStripMenuItem.Text = "Клиенты";
|
2023-05-06 22:24:09 +04:00
|
|
|
|
this.ClientsToolStripMenuItem.Click += new System.EventHandler(this.ClientsToolStripMenuItem_Click);
|
|
|
|
|
//
|
|
|
|
|
// GenresToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.GenresToolStripMenuItem.Name = "GenresToolStripMenuItem";
|
2023-05-10 20:20:14 +04:00
|
|
|
|
this.GenresToolStripMenuItem.Size = new System.Drawing.Size(224, 26);
|
2023-05-06 22:24:09 +04:00
|
|
|
|
this.GenresToolStripMenuItem.Text = "Жанры";
|
|
|
|
|
this.GenresToolStripMenuItem.Click += new System.EventHandler(this.GenresToolStripMenuItem_Click);
|
2023-05-06 15:54:44 +04:00
|
|
|
|
//
|
|
|
|
|
// ComponentsToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.ComponentsToolStripMenuItem.Name = "ComponentsToolStripMenuItem";
|
|
|
|
|
this.ComponentsToolStripMenuItem.Size = new System.Drawing.Size(276, 26);
|
|
|
|
|
this.ComponentsToolStripMenuItem.Text = "Список компонентов";
|
|
|
|
|
//
|
|
|
|
|
// ComponentGiftsToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.ComponentGiftsToolStripMenuItem.Name = "ComponentGiftsToolStripMenuItem";
|
|
|
|
|
this.ComponentGiftsToolStripMenuItem.Size = new System.Drawing.Size(276, 26);
|
|
|
|
|
this.ComponentGiftsToolStripMenuItem.Text = "Компоненты по изделиям";
|
|
|
|
|
//
|
|
|
|
|
// OrdersToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.OrdersToolStripMenuItem.Name = "OrdersToolStripMenuItem";
|
|
|
|
|
this.OrdersToolStripMenuItem.Size = new System.Drawing.Size(276, 26);
|
|
|
|
|
this.OrdersToolStripMenuItem.Text = "Список заказов";
|
|
|
|
|
//
|
|
|
|
|
// dataGridView
|
|
|
|
|
//
|
|
|
|
|
this.dataGridView.BackgroundColor = System.Drawing.SystemColors.Control;
|
|
|
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
|
|
this.dataGridView.Location = new System.Drawing.Point(12, 41);
|
|
|
|
|
this.dataGridView.Name = "dataGridView";
|
|
|
|
|
this.dataGridView.RowHeadersWidth = 51;
|
|
|
|
|
this.dataGridView.RowTemplate.Height = 29;
|
|
|
|
|
this.dataGridView.Size = new System.Drawing.Size(1123, 423);
|
|
|
|
|
this.dataGridView.TabIndex = 1;
|
|
|
|
|
//
|
|
|
|
|
// buttonCreateOrder
|
|
|
|
|
//
|
|
|
|
|
this.buttonCreateOrder.Location = new System.Drawing.Point(1155, 167);
|
|
|
|
|
this.buttonCreateOrder.Name = "buttonCreateOrder";
|
|
|
|
|
this.buttonCreateOrder.Size = new System.Drawing.Size(189, 78);
|
|
|
|
|
this.buttonCreateOrder.TabIndex = 2;
|
|
|
|
|
this.buttonCreateOrder.Text = "Создать заказ";
|
|
|
|
|
this.buttonCreateOrder.UseVisualStyleBackColor = true;
|
2023-05-06 22:24:09 +04:00
|
|
|
|
this.buttonCreateOrder.Click += new System.EventHandler(this.buttonCreateOrder_Click);
|
2023-05-06 15:54:44 +04:00
|
|
|
|
//
|
|
|
|
|
// buttonRef
|
|
|
|
|
//
|
|
|
|
|
this.buttonRef.Location = new System.Drawing.Point(1155, 304);
|
|
|
|
|
this.buttonRef.Name = "buttonRef";
|
|
|
|
|
this.buttonRef.Size = new System.Drawing.Size(189, 78);
|
|
|
|
|
this.buttonRef.TabIndex = 6;
|
|
|
|
|
this.buttonRef.Text = "Обновить список";
|
|
|
|
|
this.buttonRef.UseVisualStyleBackColor = true;
|
|
|
|
|
//
|
2023-05-10 20:20:14 +04:00
|
|
|
|
// testsToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.testsToolStripMenuItem.Name = "testsToolStripMenuItem";
|
|
|
|
|
this.testsToolStripMenuItem.Size = new System.Drawing.Size(224, 26);
|
|
|
|
|
this.testsToolStripMenuItem.Text = "Тесты";
|
|
|
|
|
this.testsToolStripMenuItem.Click += new System.EventHandler(this.testsToolStripMenuItem_Click);
|
|
|
|
|
//
|
2023-05-06 15:54:44 +04:00
|
|
|
|
// FormMain
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(1367, 471);
|
|
|
|
|
this.Controls.Add(this.buttonRef);
|
|
|
|
|
this.Controls.Add(this.buttonCreateOrder);
|
|
|
|
|
this.Controls.Add(this.dataGridView);
|
|
|
|
|
this.Controls.Add(this.menuStrip1);
|
|
|
|
|
this.MainMenuStrip = this.menuStrip1;
|
|
|
|
|
this.Name = "FormMain";
|
|
|
|
|
this.Text = "Книжный магазин";
|
2023-05-09 16:01:00 +04:00
|
|
|
|
this.Load += new System.EventHandler(this.FormMain_Load);
|
2023-05-06 15:54:44 +04:00
|
|
|
|
this.menuStrip1.ResumeLayout(false);
|
|
|
|
|
this.menuStrip1.PerformLayout();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
this.PerformLayout();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private MenuStrip menuStrip1;
|
|
|
|
|
private ToolStripMenuItem справочникиToolStripMenuItem;
|
2023-05-06 22:24:09 +04:00
|
|
|
|
private ToolStripMenuItem AuthorsToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem BooksToolStripMenuItem;
|
2023-05-06 15:54:44 +04:00
|
|
|
|
private DataGridView dataGridView;
|
|
|
|
|
private Button buttonCreateOrder;
|
|
|
|
|
private Button buttonRef;
|
|
|
|
|
private ToolStripMenuItem ComponentsToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem ComponentGiftsToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem OrdersToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem ClientsToolStripMenuItem;
|
2023-05-06 22:24:09 +04:00
|
|
|
|
private ToolStripMenuItem GenresToolStripMenuItem;
|
2023-05-10 20:20:14 +04:00
|
|
|
|
private ToolStripMenuItem testsToolStripMenuItem;
|
2023-05-06 15:54:44 +04:00
|
|
|
|
}
|
|
|
|
|
}
|