- Timestamp:
- 05/12/10 12:01:41 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/MainForm.cs
r3670 r3794 166 166 if (!DesignMode) { 167 167 MainFormManager.RegisterMainForm(this); 168 this.CreateGUI(); 168 169 if (!this.initialized) { 169 170 this.initialized = true; 170 171 this.OnInitialized(EventArgs.Empty); 171 172 } 172 this.CreateGUI();173 173 } 174 174 } -
trunk/sources/HeuristicLab.Optimizer/3.3/OptimizerMainForm.cs
r3780 r3794 70 70 ContentManager.Initialize(new PersistenceContentManager()); 71 71 72 WindowState = Properties.Settings.Default.ShowMaximized ? FormWindowState.Maximized : FormWindowState.Normal;73 74 72 clipboard = new Clipboard<IItem>(); 75 73 clipboard.Dock = DockStyle.Left; … … 88 86 startPage.Show(); 89 87 } 88 89 WindowState = Properties.Settings.Default.ShowMaximized ? FormWindowState.Maximized : FormWindowState.Normal; 90 90 } 91 91
Note: See TracChangeset
for help on using the changeset viewer.