- 툴바 아이콘 지정
- 메뉴바 테마 적용 - 메뉴바 기능 연결 - 파일 로딩 후 기능들 연결
This commit is contained in:
43
MainForm.Designer.cs
generated
43
MainForm.Designer.cs
generated
@@ -41,7 +41,6 @@
|
||||
this.toolStripButtonTrendGraph = new System.Windows.Forms.ToolStripButton();
|
||||
this.statusStrip = new System.Windows.Forms.StatusStrip();
|
||||
this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
||||
this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
|
||||
this.menuStrip = new System.Windows.Forms.MenuStrip();
|
||||
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.openDBToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
@@ -55,6 +54,7 @@
|
||||
this.trendGraphToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.reportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.allToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
|
||||
this.toolStripMain.SuspendLayout();
|
||||
this.statusStrip.SuspendLayout();
|
||||
this.menuStrip.SuspendLayout();
|
||||
@@ -177,17 +177,9 @@
|
||||
this.toolStripStatusLabel.Size = new System.Drawing.Size(122, 17);
|
||||
this.toolStripStatusLabel.Text = "Please open database";
|
||||
//
|
||||
// dockPanel
|
||||
//
|
||||
this.dockPanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.dockPanel.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow;
|
||||
this.dockPanel.Location = new System.Drawing.Point(0, 49);
|
||||
this.dockPanel.Name = "dockPanel";
|
||||
this.dockPanel.Size = new System.Drawing.Size(947, 574);
|
||||
this.dockPanel.TabIndex = 2;
|
||||
//
|
||||
// menuStrip
|
||||
//
|
||||
this.menuStrip.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.fileToolStripMenuItem,
|
||||
this.tableToolStripMenuItem,
|
||||
@@ -212,20 +204,22 @@
|
||||
// openDBToolStripMenuItem
|
||||
//
|
||||
this.openDBToolStripMenuItem.Name = "openDBToolStripMenuItem";
|
||||
this.openDBToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
|
||||
this.openDBToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
||||
this.openDBToolStripMenuItem.Text = "Open DB";
|
||||
this.openDBToolStripMenuItem.Click += new System.EventHandler(this.openDBToolStripMenuItem_Click);
|
||||
//
|
||||
// recentToolStripMenuItem
|
||||
//
|
||||
this.recentToolStripMenuItem.Name = "recentToolStripMenuItem";
|
||||
this.recentToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
|
||||
this.recentToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
||||
this.recentToolStripMenuItem.Text = "Recent";
|
||||
//
|
||||
// exitToolStripMenuItem
|
||||
//
|
||||
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
||||
this.exitToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
|
||||
this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
||||
this.exitToolStripMenuItem.Text = "Exit";
|
||||
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
||||
//
|
||||
// tableToolStripMenuItem
|
||||
//
|
||||
@@ -239,14 +233,16 @@
|
||||
// resultTableToolStripMenuItem
|
||||
//
|
||||
this.resultTableToolStripMenuItem.Name = "resultTableToolStripMenuItem";
|
||||
this.resultTableToolStripMenuItem.Size = new System.Drawing.Size(149, 22);
|
||||
this.resultTableToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
||||
this.resultTableToolStripMenuItem.Text = "Result Table";
|
||||
this.resultTableToolStripMenuItem.Click += new System.EventHandler(this.resultTableToolStripMenuItem_Click);
|
||||
//
|
||||
// analysisTableToolStripMenuItem
|
||||
//
|
||||
this.analysisTableToolStripMenuItem.Name = "analysisTableToolStripMenuItem";
|
||||
this.analysisTableToolStripMenuItem.Size = new System.Drawing.Size(149, 22);
|
||||
this.analysisTableToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
||||
this.analysisTableToolStripMenuItem.Text = "Analysis Table";
|
||||
this.analysisTableToolStripMenuItem.Click += new System.EventHandler(this.analysisTableToolStripMenuItem_Click);
|
||||
//
|
||||
// graphToolStripMenuItem
|
||||
//
|
||||
@@ -260,14 +256,17 @@
|
||||
// radarGraphToolStripMenuItem
|
||||
//
|
||||
this.radarGraphToolStripMenuItem.Name = "radarGraphToolStripMenuItem";
|
||||
this.radarGraphToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
|
||||
this.radarGraphToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
||||
this.radarGraphToolStripMenuItem.Text = "Radar Graph";
|
||||
this.radarGraphToolStripMenuItem.Click += new System.EventHandler(this.radarGraphToolStripMenuItem_Click);
|
||||
//
|
||||
// trendGraphToolStripMenuItem
|
||||
//
|
||||
this.trendGraphToolStripMenuItem.Enabled = false;
|
||||
this.trendGraphToolStripMenuItem.Name = "trendGraphToolStripMenuItem";
|
||||
this.trendGraphToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
|
||||
this.trendGraphToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
||||
this.trendGraphToolStripMenuItem.Text = "Trend Graph";
|
||||
this.trendGraphToolStripMenuItem.Click += new System.EventHandler(this.trendGraphToolStripMenuItem_Click);
|
||||
//
|
||||
// reportToolStripMenuItem
|
||||
//
|
||||
@@ -283,6 +282,15 @@
|
||||
this.allToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
|
||||
this.allToolStripMenuItem.Text = "All";
|
||||
//
|
||||
// dockPanel
|
||||
//
|
||||
this.dockPanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.dockPanel.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow;
|
||||
this.dockPanel.Location = new System.Drawing.Point(0, 49);
|
||||
this.dockPanel.Name = "dockPanel";
|
||||
this.dockPanel.Size = new System.Drawing.Size(947, 574);
|
||||
this.dockPanel.TabIndex = 2;
|
||||
//
|
||||
// MainForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
@@ -292,6 +300,7 @@
|
||||
this.Controls.Add(this.statusStrip);
|
||||
this.Controls.Add(this.toolStripMain);
|
||||
this.Controls.Add(this.menuStrip);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.MainMenuStrip = this.menuStrip;
|
||||
this.Name = "MainForm";
|
||||
this.Text = "Material Stick-Slip Analysis";
|
||||
|
||||
Reference in New Issue
Block a user