- Timestamp:
- Jan 18, 2011, 9:15:22 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGDocumentManager.cs
r1065 r1070 198 198 199 199 //Create the first empty document 200 //SAM: Good place for break point 200 201 CGDocument doc = new CGDocument(); 201 202 doc.DocManager = _current; … … 281 282 #region Methods & Events 282 283 283 284 private void StartSplash(object form)285 {286 ((DSplash)form).ShowDialog();287 }288 289 284 /// <summary> 290 285 /// See InitializeApp(bool) below … … 325 320 326 321 //Start new thread for the Splash screen. 327 Thread threadSplash = new Thread(new ParameterizedThreadStart( StartSplash));322 Thread threadSplash = new Thread(new ParameterizedThreadStart(frm => ((DSplash)frm).ShowDialog())); 328 323 threadSplash.IsBackground = true; //expendable thread -- exit even if still running. 329 324 threadSplash.Name = "Splash Thread";
Note:
See TracChangeset
for help on using the changeset viewer.