Ignore:
Timestamp:
Jan 18, 2011, 9:15:22 AM (14 years ago)
Author:
Sam Habiel
Message:

LoadingSplash: New Form that does... pretty much nothing. Just shows a splash when updating data from server.
CGView:

CGDocumentManager:

CGDocument:

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/CGDocumentManager.cs

    r1065 r1070  
    198198
    199199            //Create the first empty document
     200            //SAM: Good place for break point
    200201            CGDocument doc = new CGDocument();
    201202            doc.DocManager = _current;
     
    281282                #region Methods & Events
    282283
    283        
    284                 private void StartSplash(object form)
    285                 {
    286             ((DSplash)form).ShowDialog();
    287                 }
    288 
    289284        /// <summary>
    290285        /// See InitializeApp(bool) below
     
    325320
    326321            //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()));
    328323            threadSplash.IsBackground = true; //expendable thread -- exit even if still running.
    329324            threadSplash.Name = "Splash Thread";
Note: See TracChangeset for help on using the changeset viewer.