예제 #1
0
        private bool RunStartUpWizard()
        {
            bool retValue = false;

            using (StartupWizard wizard = new StartupWizard())
            {
                if (wizard.ShowDialog() == DialogResult.OK)
                {
                    retValue = true;
                }
            }

            return(retValue);
        }
 public SelectSubjectPage(StartupWizard owner)
 {
     InitializeComponent();
     this.owner = owner;
 }