Changeset 513
- Timestamp:
- 03/07/10 15:21:00 (6 months ago)
- Files:
-
- 1 modified
-
IBBoard.WarFoundry.GUI.WinForms/trunk/FrmMain.cs (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
IBBoard.WarFoundry.GUI.WinForms/trunk/FrmMain.cs
r512 r513 271 271 // 272 272 this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 273 this.menuFile,274 this.menuEdit,275 this.menuHelp});273 this.menuFile, 274 this.menuEdit, 275 this.menuHelp}); 276 276 this.menuStrip.Location = new System.Drawing.Point(0, 0); 277 277 this.menuStrip.Name = "menuStrip"; … … 283 283 // 284 284 this.menuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 285 this.miNewArmy,286 this.miOpenArmy,287 this.miSaveArmy,288 this.miSaveArmyAs,289 this.miExportArmyAs,290 this.miCloseArmy,291 this.toolStripSeparator1,292 this.miReloadFiles,293 this.toolStripSeparator2,294 this.miExit});285 this.miNewArmy, 286 this.miOpenArmy, 287 this.miSaveArmy, 288 this.miSaveArmyAs, 289 this.miExportArmyAs, 290 this.miCloseArmy, 291 this.toolStripSeparator1, 292 this.miReloadFiles, 293 this.toolStripSeparator2, 294 this.miExit}); 295 295 this.menuFile.Name = "menuFile"; 296 296 this.menuFile.Size = new System.Drawing.Size(33, 20); … … 330 330 // 331 331 this.miExportArmyAs.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 332 this.miExportArmyAsBasicHTML});332 this.miExportArmyAsBasicHTML}); 333 333 this.miExportArmyAs.Enabled = false; 334 334 this.miExportArmyAs.Name = "miExportArmyAs"; … … 378 378 // 379 379 this.menuEdit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 380 this.miUndo,381 this.miRedo});380 this.miUndo, 381 this.miRedo}); 382 382 this.menuEdit.Name = "menuEdit"; 383 383 this.menuEdit.Size = new System.Drawing.Size(36, 20); … … 403 403 // 404 404 this.menuHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 405 this.miAbout});405 this.miAbout}); 406 406 this.menuHelp.Name = "menuHelp"; 407 407 this.menuHelp.Size = new System.Drawing.Size(39, 20); … … 419 419 this.mainToolStrip.Dock = System.Windows.Forms.DockStyle.None; 420 420 this.mainToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 421 this.bttnNewArmy,422 this.bttnOpenArmy,423 this.bttnSaveArmy,424 this.toolStripSeparator3,425 this.bttnUndo,426 this.bttnRedo});421 this.bttnNewArmy, 422 this.bttnOpenArmy, 423 this.bttnSaveArmy, 424 this.toolStripSeparator3, 425 this.bttnUndo, 426 this.bttnRedo}); 427 427 this.mainToolStrip.Location = new System.Drawing.Point(0, 24); 428 428 this.mainToolStrip.Name = "mainToolStrip"; 429 this.mainToolStrip.Size = new System.Drawing.Size(1 51, 25);429 this.mainToolStrip.Size = new System.Drawing.Size(182, 25); 430 430 this.mainToolStrip.TabIndex = 8; 431 431 // … … 475 475 this.bttnUndo.Size = new System.Drawing.Size(32, 22); 476 476 this.bttnUndo.Text = "undo"; 477 this.bttnUndo. Click += new System.EventHandler(this.miUndo_Click);477 this.bttnUndo.ButtonClick += new System.EventHandler(this.miUndo_Click); 478 478 // 479 479 // bttnRedo … … 486 486 this.bttnRedo.Size = new System.Drawing.Size(32, 22); 487 487 this.bttnRedo.Text = "redo"; 488 this.bttnRedo. Click += new System.EventHandler(this.miRedo_Click);488 this.bttnRedo.ButtonClick += new System.EventHandler(this.miRedo_Click); 489 489 // 490 490 // catToolStrip … … 502 502 this.statusBar.Name = "statusBar"; 503 503 this.statusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] { 504 this.sbMainPanel,505 this.sbErrorPanel,506 this.sbPointsPanel});504 this.sbMainPanel, 505 this.sbErrorPanel, 506 this.sbPointsPanel}); 507 507 this.statusBar.ShowPanels = true; 508 508 this.statusBar.Size = new System.Drawing.Size(790, 22); … … 568 568 this.ResumeLayout(false); 569 569 this.PerformLayout(); 570 570 571 } 571 572 #endregion
WarFoundry - Development