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

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

private static splash_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
        private static void splash_Load(object sender, EventArgs e)
        {
            // The splash screen hasn't appeared yet, so we need to start
            // a timer to enable us to do our actual loading tasks once
            // it has done so.
            Timer timer = new Timer();
            timer.Interval = 40;
            timer.Tick += new EventHandler(startupTimer_Tick);
            timer.Start();
        }