예제 #1
0
        /// <summary>
        /// Create a new startup window
        /// </summary>
        public static void NewStartup()
        {
            // Creeate a new startup form, and show it
            StartupDisplay startupDisplay = new StartupDisplay();
            startupDisplay.Show();

            // Count the window
            windowCount++;
        }
예제 #2
0
파일: Program.cs 프로젝트: mcswaip1/Uno
        /// <summary>
        /// Create a new startup window
        /// </summary>
        static public void NewStartup()
        {
            // Creeate a new startup form, and show it
            StartupDisplay startupDisplay = new StartupDisplay();

            startupDisplay.Show();

            // Count the window
            windowCount++;
        }