Example #1
0
        public static void CreateNew(VideoSettings sets, Hidden.FirstTime firstWindow = null)
        {
            RTSPWizard wiz = new RTSPWizard(null, sets, firstWindow);

            if (firstWindow != null)
            {
                firstWindow.Hide();
                wiz.ShowDialog();
            }
            else
            {
                wiz.Show();
            }
        }