diff --git a/LawFirm/LawFirmView/FormMain.Designer.cs b/LawFirm/LawFirmView/FormMain.Designer.cs index 1eee423..f850766 100644 --- a/LawFirm/LawFirmView/FormMain.Designer.cs +++ b/LawFirm/LawFirmView/FormMain.Designer.cs @@ -38,6 +38,7 @@ this.ДеталиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.ДокументыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.магазинToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); this.отчетыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.DocumentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.documentsBlanksToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); @@ -48,7 +49,6 @@ this.dataGridView = new System.Windows.Forms.DataGridView(); this.ButtonAddDocument = new System.Windows.Forms.Button(); this.ButtonSellDocument = new System.Windows.Forms.Button(); - this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); this.menuStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit(); this.SuspendLayout(); @@ -158,6 +158,13 @@ this.магазинToolStripMenuItem.Text = "Магазины"; this.магазинToolStripMenuItem.Click += new System.EventHandler(this.МагазиныToolStripMenuItem_Click); // + // toolStripMenuItem2 + // + this.toolStripMenuItem2.Name = "toolStripMenuItem2"; + this.toolStripMenuItem2.Size = new System.Drawing.Size(180, 22); + this.toolStripMenuItem2.Text = "Клиенты"; + this.toolStripMenuItem2.Click += new System.EventHandler(this.ClientsToolStripMenuItem_Click); + // // отчетыToolStripMenuItem // this.отчетыToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { @@ -247,12 +254,6 @@ this.ButtonSellDocument.UseVisualStyleBackColor = true; this.ButtonSellDocument.Click += new System.EventHandler(this.ButtonSellDocument_Click); // - // toolStripMenuItem2 - // - this.toolStripMenuItem2.Name = "toolStripMenuItem2"; - this.toolStripMenuItem2.Size = new System.Drawing.Size(180, 22); - this.toolStripMenuItem2.Text = "Клиенты"; - // // FormMain // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); diff --git a/LawFirm/LawFirmView/FormMain.cs b/LawFirm/LawFirmView/FormMain.cs index 69f3bd9..fc9a51e 100644 --- a/LawFirm/LawFirmView/FormMain.cs +++ b/LawFirm/LawFirmView/FormMain.cs @@ -250,5 +250,10 @@ namespace LawFirmView form.ShowDialog(); } } - } + + private void ClientsToolStripMenuItem_Click(object sender, EventArgs e) + { + + } + } }