This commit is contained in:
chikyun.kim
2018-10-31 09:50:59 +09:00
parent 45a3def8e1
commit 8002b1a254
9 changed files with 220 additions and 88 deletions

View File

@@ -49,6 +49,7 @@
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.projectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.listToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.workReportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.commonToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.itemsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.codesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
@@ -89,7 +90,7 @@
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
this.workReportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
this.cmVision.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.menuStrip1.SuspendLayout();
@@ -232,10 +233,17 @@
// listToolStripMenuItem
//
this.listToolStripMenuItem.Name = "listToolStripMenuItem";
this.listToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
this.listToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.listToolStripMenuItem.Text = "List";
this.listToolStripMenuItem.Click += new System.EventHandler(this.listToolStripMenuItem_Click);
//
// workReportToolStripMenuItem
//
this.workReportToolStripMenuItem.Name = "workReportToolStripMenuItem";
this.workReportToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.workReportToolStripMenuItem.Text = "Work_Report";
this.workReportToolStripMenuItem.Click += new System.EventHandler(this.workReportToolStripMenuItem_Click);
//
// commonToolStripMenuItem
//
this.commonToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
@@ -527,7 +535,8 @@
this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButton1,
this.toolStripButton2,
this.toolStripButton3});
this.toolStripButton3,
this.toolStripButton4});
this.toolStrip.Location = new System.Drawing.Point(1, 25);
this.toolStrip.Name = "toolStrip";
this.toolStrip.Size = new System.Drawing.Size(1035, 25);
@@ -565,12 +574,15 @@
this.toolStripButton3.Text = "toolStripButton3";
this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
//
// workReportToolStripMenuItem
// toolStripButton4
//
this.workReportToolStripMenuItem.Name = "workReportToolStripMenuItem";
this.workReportToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.workReportToolStripMenuItem.Text = "Work_Report";
this.workReportToolStripMenuItem.Click += new System.EventHandler(this.workReportToolStripMenuItem_Click);
this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton4.Name = "toolStripButton4";
this.toolStripButton4.Size = new System.Drawing.Size(23, 22);
this.toolStripButton4.Text = "toolStripButton4";
this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
//
// fMain
//
@@ -664,6 +676,7 @@
private System.Windows.Forms.ToolStripMenuItem myAccouserToolStripMenuItem;
private System.Windows.Forms.ToolStripButton toolStripButton3;
private System.Windows.Forms.ToolStripMenuItem workReportToolStripMenuItem;
private System.Windows.Forms.ToolStripButton toolStripButton4;
}
}