示例#1
0
        private static void CloseSplashScreenAndCheckRegistration()
        {
            if (_splashForm != null)
            {
                _splashForm.FadeAndClose(); //it's going to hang around while it fades,
                _splashForm = null; //but we are done with it
            }

            if (RegistrationDialog.ShouldWeShowRegistrationDialog())
            {
                using (var dlg = new RegistrationDialog(false))
                {
                    if (_projectContext!=null && _projectContext.ProjectWindow != null)
                        dlg.ShowDialog(_projectContext.ProjectWindow);
                    else
                    {
                        dlg.ShowDialog();
                    }
                }
            }
        }
示例#2
0
 private void OnRegistrationMenuItem_Click(object sender, EventArgs e)
 {
     using (var dlg = new RegistrationDialog(true))
     {
         dlg.ShowDialog();
     }
 }