Changeset 2469
- Timestamp:
- 11/05/09 13:48:22 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/MainFormBase.Designer.cs
r2458 r2469 48 48 this.toolStrip = new System.Windows.Forms.ToolStrip(); 49 49 this.statusStrip = new System.Windows.Forms.StatusStrip(); 50 this.statusStrip.SuspendLayout();51 50 this.SuspendLayout(); 52 51 // … … 85 84 this.MainMenuStrip = this.menuStrip; 86 85 this.Name = "MainFormBase"; 87 this.statusStrip.ResumeLayout(false); 88 this.statusStrip.PerformLayout(); 86 this.Load += new System.EventHandler(this.MainFormBase_Load); 89 87 this.ResumeLayout(false); 90 88 this.PerformLayout(); -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/MainFormBase.cs
r2463 r2469 38 38 this.views = new Dictionary<IView, Form>(); 39 39 this.userInterfaceItems = new List<IUserInterfaceItem>(); 40 if (!DesignMode)41 MainFormManager.RegisterMainForm(this);42 40 } 43 41 … … 46 44 this.userInterfaceItemType = userInterfaceItemType; 47 45 CreateGUI(); 46 } 47 48 private void MainFormBase_Load(object sender, EventArgs e) { 49 if (!DesignMode) 50 MainFormManager.RegisterMainForm(this); 48 51 } 49 52
Note: See TracChangeset
for help on using the changeset viewer.