コード例 #1
0
ファイル: Program.cs プロジェクト: DouglasHeriot/Uno
        /// <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++;
        }