50 |
this.mnuItemExit = new System.Windows.Forms.ToolStripMenuItem(); |
this.mnuItemExit = new System.Windows.Forms.ToolStripMenuItem(); |
51 |
this.mnuTools = new System.Windows.Forms.ToolStripMenuItem(); |
this.mnuTools = new System.Windows.Forms.ToolStripMenuItem(); |
52 |
this.mnuItemConfig = new System.Windows.Forms.ToolStripMenuItem(); |
this.mnuItemConfig = new System.Windows.Forms.ToolStripMenuItem(); |
|
this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel(); |
|
53 |
this.mnuView = new System.Windows.Forms.ToolStripMenuItem(); |
this.mnuView = new System.Windows.Forms.ToolStripMenuItem(); |
54 |
this.mnuItemShowLogWindow = new System.Windows.Forms.ToolStripMenuItem(); |
this.mnuItemShowLogWindow = new System.Windows.Forms.ToolStripMenuItem(); |
55 |
|
this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel(); |
56 |
|
this.mnuHelp = new System.Windows.Forms.ToolStripMenuItem(); |
57 |
|
this.mnuItemHelpAbout = new System.Windows.Forms.ToolStripMenuItem(); |
58 |
this.mainmnu.SuspendLayout(); |
this.mainmnu.SuspendLayout(); |
59 |
this.SuspendLayout(); |
this.SuspendLayout(); |
60 |
// |
// |
63 |
this.mainmnu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
this.mainmnu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
64 |
this.mnuFile, |
this.mnuFile, |
65 |
this.mnuTools, |
this.mnuTools, |
66 |
this.mnuView}); |
this.mnuView, |
67 |
|
this.mnuHelp}); |
68 |
this.mainmnu.Location = new System.Drawing.Point(0, 0); |
this.mainmnu.Location = new System.Drawing.Point(0, 0); |
69 |
this.mainmnu.Name = "mainmnu"; |
this.mainmnu.Name = "mainmnu"; |
70 |
this.mainmnu.Size = new System.Drawing.Size(1229, 24); |
this.mainmnu.Size = new System.Drawing.Size(1229, 24); |
115 |
this.mnuItemConfig.Text = "&Config"; |
this.mnuItemConfig.Text = "&Config"; |
116 |
this.mnuItemConfig.Click += new System.EventHandler(this.mnuItemConfig_Click); |
this.mnuItemConfig.Click += new System.EventHandler(this.mnuItemConfig_Click); |
117 |
// |
// |
118 |
|
// mnuView |
119 |
|
// |
120 |
|
this.mnuView.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { |
121 |
|
this.mnuItemShowLogWindow}); |
122 |
|
this.mnuView.Name = "mnuView"; |
123 |
|
this.mnuView.Size = new System.Drawing.Size(44, 20); |
124 |
|
this.mnuView.Text = "&View"; |
125 |
|
// |
126 |
|
// mnuItemShowLogWindow |
127 |
|
// |
128 |
|
this.mnuItemShowLogWindow.Name = "mnuItemShowLogWindow"; |
129 |
|
this.mnuItemShowLogWindow.Size = new System.Drawing.Size(173, 22); |
130 |
|
this.mnuItemShowLogWindow.Text = "&Show Log Window"; |
131 |
|
this.mnuItemShowLogWindow.Click += new System.EventHandler(this.mnuItemShowLogWindow_Click); |
132 |
|
// |
133 |
// dockPanel |
// dockPanel |
134 |
// |
// |
135 |
this.dockPanel.ActiveAutoHideContent = null; |
this.dockPanel.ActiveAutoHideContent = null; |
188 |
this.dockPanel.Skin = dockPanelSkin1; |
this.dockPanel.Skin = dockPanelSkin1; |
189 |
this.dockPanel.TabIndex = 3; |
this.dockPanel.TabIndex = 3; |
190 |
// |
// |
191 |
// mnuView |
// mnuHelp |
192 |
// |
// |
193 |
this.mnuView.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { |
this.mnuHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { |
194 |
this.mnuItemShowLogWindow}); |
this.mnuItemHelpAbout}); |
195 |
this.mnuView.Name = "mnuView"; |
this.mnuHelp.Name = "mnuHelp"; |
196 |
this.mnuView.Size = new System.Drawing.Size(44, 20); |
this.mnuHelp.Size = new System.Drawing.Size(44, 20); |
197 |
this.mnuView.Text = "&View"; |
this.mnuHelp.Text = "&Help"; |
198 |
// |
// |
199 |
// mnuItemShowLogWindow |
// mnuItemHelpAbout |
200 |
// |
// |
201 |
this.mnuItemShowLogWindow.Name = "mnuItemShowLogWindow"; |
this.mnuItemHelpAbout.Name = "mnuItemHelpAbout"; |
202 |
this.mnuItemShowLogWindow.Size = new System.Drawing.Size(173, 22); |
this.mnuItemHelpAbout.Size = new System.Drawing.Size(152, 22); |
203 |
this.mnuItemShowLogWindow.Text = "&Show Log Window"; |
this.mnuItemHelpAbout.Text = "&About"; |
204 |
this.mnuItemShowLogWindow.Click += new System.EventHandler(this.mnuItemShowLogWindow_Click); |
this.mnuItemHelpAbout.Click += new System.EventHandler(this.mnuItemHelpAbout_Click); |
205 |
// |
// |
206 |
// Main |
// Main |
207 |
// |
// |
234 |
private WeifenLuo.WinFormsUI.Docking.DockPanel dockPanel; |
private WeifenLuo.WinFormsUI.Docking.DockPanel dockPanel; |
235 |
private System.Windows.Forms.ToolStripMenuItem mnuView; |
private System.Windows.Forms.ToolStripMenuItem mnuView; |
236 |
private System.Windows.Forms.ToolStripMenuItem mnuItemShowLogWindow; |
private System.Windows.Forms.ToolStripMenuItem mnuItemShowLogWindow; |
237 |
|
private System.Windows.Forms.ToolStripMenuItem mnuHelp; |
238 |
|
private System.Windows.Forms.ToolStripMenuItem mnuItemHelpAbout; |
239 |
} |
} |
240 |
} |
} |
241 |
|
|