2023-02-13 22:22:24 +04:00
|
|
|
|
namespace LawFirmView
|
|
|
|
|
{
|
|
|
|
|
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();
|
|
|
|
|
this.бланкиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.документыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2023-03-27 19:39:11 +04:00
|
|
|
|
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();
|
2023-02-13 22:22:24 +04:00
|
|
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
|
|
|
this.buttonCreateOrder = new System.Windows.Forms.Button();
|
|
|
|
|
this.buttonTakeOrderInWork = new System.Windows.Forms.Button();
|
|
|
|
|
this.buttonOrderReady = new System.Windows.Forms.Button();
|
|
|
|
|
this.buttonIssuedOrder = new System.Windows.Forms.Button();
|
|
|
|
|
this.buttonUpdate = new System.Windows.Forms.Button();
|
|
|
|
|
this.menuStrip1.SuspendLayout();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// menuStrip1
|
|
|
|
|
//
|
|
|
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
2023-03-13 23:04:34 +04:00
|
|
|
|
this.справочникиToolStripMenuItem,
|
|
|
|
|
this.отчетыToolStripMenuItem});
|
2023-02-13 22:22:24 +04:00
|
|
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.menuStrip1.Name = "menuStrip1";
|
|
|
|
|
this.menuStrip1.Size = new System.Drawing.Size(800, 24);
|
|
|
|
|
this.menuStrip1.TabIndex = 0;
|
|
|
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
|
|
|
//
|
|
|
|
|
// справочникиToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.справочникиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
|
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-27 19:39:11 +04:00
|
|
|
|
this.бланкиToolStripMenuItem.Size = new System.Drawing.Size(137, 22);
|
2023-02-13 22:22:24 +04:00
|
|
|
|
this.бланкиToolStripMenuItem.Text = "Бланки";
|
|
|
|
|
this.бланкиToolStripMenuItem.Click += new System.EventHandler(this.BlanksToolStripMenuItem_Click);
|
|
|
|
|
//
|
|
|
|
|
// документыToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.документыToolStripMenuItem.Name = "документыToolStripMenuItem";
|
2023-03-27 19:39:11 +04:00
|
|
|
|
this.документыToolStripMenuItem.Size = new System.Drawing.Size(137, 22);
|
2023-02-13 22:22:24 +04:00
|
|
|
|
this.документыToolStripMenuItem.Text = "Документы";
|
|
|
|
|
this.документыToolStripMenuItem.Click += new System.EventHandler(this.DocumentsToolStripMenuItem_Click);
|
|
|
|
|
//
|
2023-03-27 19:39:11 +04:00
|
|
|
|
// отчетыToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.отчетыToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
|
this.списокКомпонентовToolStripMenuItem,
|
|
|
|
|
this.компонентыПоИзделиямToolStripMenuItem,
|
|
|
|
|
this.списокЗаказовToolStripMenuItem});
|
|
|
|
|
this.отчетыToolStripMenuItem.Name = "отчетыToolStripMenuItem";
|
|
|
|
|
this.отчетыToolStripMenuItem.Size = new System.Drawing.Size(60, 20);
|
|
|
|
|
this.отчетыToolStripMenuItem.Text = "Отчеты";
|
|
|
|
|
//
|
|
|
|
|
// списокКомпонентовToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.списокКомпонентовToolStripMenuItem.Name = "списокКомпонентовToolStripMenuItem";
|
|
|
|
|
this.списокКомпонентовToolStripMenuItem.Size = new System.Drawing.Size(218, 22);
|
|
|
|
|
this.списокКомпонентовToolStripMenuItem.Text = "Список компонентов";
|
|
|
|
|
this.списокКомпонентовToolStripMenuItem.Click += new System.EventHandler(this.BlanksReportToolStripMenuItem_Click);
|
|
|
|
|
//
|
|
|
|
|
// компонентыПоИзделиямToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.компонентыПоИзделиямToolStripMenuItem.Name = "компонентыПоИзделиямToolStripMenuItem";
|
|
|
|
|
this.компонентыПоИзделиямToolStripMenuItem.Size = new System.Drawing.Size(218, 22);
|
|
|
|
|
this.компонентыПоИзделиямToolStripMenuItem.Text = "Компоненты по изделиям";
|
|
|
|
|
this.компонентыПоИзделиямToolStripMenuItem.Click += new System.EventHandler(this.DocumentBlanksReportToolStripMenuItem_Click);
|
|
|
|
|
//
|
|
|
|
|
// списокЗаказовToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.списокЗаказовToolStripMenuItem.Name = "списокЗаказовToolStripMenuItem";
|
|
|
|
|
this.списокЗаказовToolStripMenuItem.Size = new System.Drawing.Size(218, 22);
|
|
|
|
|
this.списокЗаказовToolStripMenuItem.Text = "Список заказов";
|
|
|
|
|
this.списокЗаказовToolStripMenuItem.Click += new System.EventHandler(this.OrdersReportToolStripMenuItem_Click);
|
|
|
|
|
//
|
2023-02-13 22:22:24 +04:00
|
|
|
|
// dataGridView
|
|
|
|
|
//
|
|
|
|
|
this.dataGridView.AllowUserToAddRows = false;
|
|
|
|
|
this.dataGridView.AllowUserToDeleteRows = false;
|
|
|
|
|
this.dataGridView.BackgroundColor = System.Drawing.Color.White;
|
|
|
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
|
|
this.dataGridView.Location = new System.Drawing.Point(12, 27);
|
|
|
|
|
this.dataGridView.Name = "dataGridView";
|
|
|
|
|
this.dataGridView.ReadOnly = true;
|
|
|
|
|
this.dataGridView.RowTemplate.Height = 25;
|
|
|
|
|
this.dataGridView.Size = new System.Drawing.Size(566, 411);
|
|
|
|
|
this.dataGridView.TabIndex = 1;
|
|
|
|
|
//
|
|
|
|
|
// buttonCreateOrder
|
|
|
|
|
//
|
|
|
|
|
this.buttonCreateOrder.Location = new System.Drawing.Point(605, 27);
|
|
|
|
|
this.buttonCreateOrder.Name = "buttonCreateOrder";
|
|
|
|
|
this.buttonCreateOrder.Size = new System.Drawing.Size(168, 23);
|
|
|
|
|
this.buttonCreateOrder.TabIndex = 2;
|
|
|
|
|
this.buttonCreateOrder.Text = "Создать заказ";
|
|
|
|
|
this.buttonCreateOrder.UseVisualStyleBackColor = true;
|
|
|
|
|
this.buttonCreateOrder.Click += new System.EventHandler(this.ButtonCreateOrder_Click);
|
|
|
|
|
//
|
|
|
|
|
// buttonTakeOrderInWork
|
|
|
|
|
//
|
|
|
|
|
this.buttonTakeOrderInWork.Location = new System.Drawing.Point(605, 56);
|
|
|
|
|
this.buttonTakeOrderInWork.Name = "buttonTakeOrderInWork";
|
|
|
|
|
this.buttonTakeOrderInWork.Size = new System.Drawing.Size(168, 23);
|
|
|
|
|
this.buttonTakeOrderInWork.TabIndex = 3;
|
|
|
|
|
this.buttonTakeOrderInWork.Text = "Отдать на выполнение";
|
|
|
|
|
this.buttonTakeOrderInWork.UseVisualStyleBackColor = true;
|
|
|
|
|
this.buttonTakeOrderInWork.Click += new System.EventHandler(this.ButtonTakeOrderInWork_Click);
|
|
|
|
|
//
|
|
|
|
|
// buttonOrderReady
|
|
|
|
|
//
|
|
|
|
|
this.buttonOrderReady.Location = new System.Drawing.Point(605, 85);
|
|
|
|
|
this.buttonOrderReady.Name = "buttonOrderReady";
|
|
|
|
|
this.buttonOrderReady.Size = new System.Drawing.Size(168, 23);
|
|
|
|
|
this.buttonOrderReady.TabIndex = 4;
|
|
|
|
|
this.buttonOrderReady.Text = "Заказ готов";
|
|
|
|
|
this.buttonOrderReady.UseVisualStyleBackColor = true;
|
|
|
|
|
this.buttonOrderReady.Click += new System.EventHandler(this.ButtonOrderReady_Click);
|
|
|
|
|
//
|
|
|
|
|
// buttonIssuedOrder
|
|
|
|
|
//
|
|
|
|
|
this.buttonIssuedOrder.Location = new System.Drawing.Point(605, 114);
|
|
|
|
|
this.buttonIssuedOrder.Name = "buttonIssuedOrder";
|
|
|
|
|
this.buttonIssuedOrder.Size = new System.Drawing.Size(168, 23);
|
|
|
|
|
this.buttonIssuedOrder.TabIndex = 5;
|
|
|
|
|
this.buttonIssuedOrder.Text = "Заказ выдан";
|
|
|
|
|
this.buttonIssuedOrder.UseVisualStyleBackColor = true;
|
|
|
|
|
this.buttonIssuedOrder.Click += new System.EventHandler(this.ButtonIssuedOrder_Click);
|
|
|
|
|
//
|
|
|
|
|
// buttonUpdate
|
|
|
|
|
//
|
|
|
|
|
this.buttonUpdate.Location = new System.Drawing.Point(605, 143);
|
|
|
|
|
this.buttonUpdate.Name = "buttonUpdate";
|
|
|
|
|
this.buttonUpdate.Size = new System.Drawing.Size(168, 23);
|
|
|
|
|
this.buttonUpdate.TabIndex = 6;
|
|
|
|
|
this.buttonUpdate.Text = "Обновить список";
|
|
|
|
|
this.buttonUpdate.UseVisualStyleBackColor = true;
|
|
|
|
|
this.buttonUpdate.Click += new System.EventHandler(this.ButtonRef_Click);
|
|
|
|
|
//
|
|
|
|
|
// FormMain
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
|
|
|
this.Controls.Add(this.buttonUpdate);
|
|
|
|
|
this.Controls.Add(this.buttonIssuedOrder);
|
|
|
|
|
this.Controls.Add(this.buttonOrderReady);
|
|
|
|
|
this.Controls.Add(this.buttonTakeOrderInWork);
|
|
|
|
|
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-03-27 19:39:11 +04:00
|
|
|
|
this.Load += new System.EventHandler(this.FormMain_Load);
|
2023-02-13 22:22:24 +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;
|
|
|
|
|
private DataGridView dataGridView;
|
|
|
|
|
private Button buttonCreateOrder;
|
|
|
|
|
private Button buttonTakeOrderInWork;
|
|
|
|
|
private Button buttonOrderReady;
|
|
|
|
|
private Button buttonIssuedOrder;
|
|
|
|
|
private Button buttonUpdate;
|
|
|
|
|
private ToolStripMenuItem бланкиToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem документыToolStripMenuItem;
|
2023-03-13 23:04:34 +04:00
|
|
|
|
private ToolStripMenuItem отчетыToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem списокКомпонентовToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem компонентыПоИзделиямToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem списокЗаказовToolStripMenuItem;
|
2023-02-13 22:22:24 +04:00
|
|
|
|
}
|
|
|
|
|
}
|