AGS.Editor.Program.startupTimer_Tick C# (CSharp) Метод

startupTimer_Tick() приватный статический Метод

private static startupTimer_Tick ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
        private static void startupTimer_Tick(object sender, EventArgs e)
        {
            ((Timer)sender).Stop();
            ((Timer)sender).Dispose();

            // This line does all the work loading the app
            _application = new ApplicationController();

            // Close the splash screen; control will return to
            // the RunApplication function where it will start
            // the main form.
            Application.OpenForms[0].Close();
        }