Exemplo n.º 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++;
        }
Exemplo n.º 2
0
        /// <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++;
        }