Пример #1
0
        protected void RunLaunchPad()
        {
            Wizard wizard = new Wizard();
            wizard.ShowDialog();
            if (wizard.SwitchModes)
            {
                RegistryHelper.getInstance().SetNeedToRunWizardAtStartup(true);
                RegistryHelper.getInstance().SetNeedToRunWizard(true);

                RunWizard();
            }
            else if (wizard.DialogResult == DialogResult.OK)
            {
                LaunchApplicationForTest(wizard, true);
            }
        }