Example #1
0
 /// <summary>
 /// Open the main window listing transfers.
 /// </summary>
 private void ShowMainWindow()
 {
     Settings.Instance.MainWindowVisible = true;
     if (view == null)
     {
         view = new AstrogationView(model, ResetView, () => { launcher.SetFalse(true); });
     }
     view.Show();
 }
Example #2
0
        /// <summary>
        /// Open the main window listing transfers.
        /// </summary>
        private void ShowMainWindow()
        {
            DbgFmt("Deploying main window");

            Settings.Instance.MainWindowVisible = true;
            if (view == null)
            {
                view = new AstrogationView(model, ResetView);
                DbgFmt("View mated to booster");
            }
            view.Show();

            DbgFmt("Deployed main window");
        }