コード例 #1
0
        // The thread idle loop
        void IdleHandler(object sender, EventArgs e)
        {
            if (startupComplete)
            {
                if (needsGettingStarted)
                {
                    needsGettingStarted = false;
                    using (Form d = new GettingStartedDialog()) {
                        d.ShowDialog(objectBrowserForm);
                    }
                }
            }

            EventLogList.NewIncarnation();
            ObjectCreator.CheckOutstandingCreation();
        }
コード例 #2
0
 void RunGettingStarted()
 {
     using (GettingStartedDialog d = new GettingStartedDialog()) {
         d.ShowDialog(objectBrowserForm);
     }
 }