コード例 #1
0
        /* Start the Updater */
        public static void Start()
        {
            //Initiate the GUI
            GUI = new UpdaterForm();

            //Enable visual styles for the application
            Application.EnableVisualStyles();

            ExtractVersions();

            //Run the GUI
            Application.Run(GUI);
        }
コード例 #2
0
        /* Start the Updater */
        public static void Start()
        {
            //Initiate the GUI
            GUI = new UpdaterForm();

            //Initiate the Serial Connection
            Serial = new SerialConnection();

            //Initiate the Flasher Thread
            new FlashThread();

            //Enable visual styles for the application
            Application.EnableVisualStyles();

            //Run the GUI
            Application.Run(GUI);
        }