Exemple #1
0
 public static void Main(string[] args)
 {
     Application.Init ();
     MainWindow win = new MainWindow ();
     SplashScreen SpLoader = new SplashScreen();
     SpLoader.Show();
     Thread.Sleep(2000);
     SpLoader.Hide();
     win.Show ();
     Application.Run ();
 }
Exemple #2
0
        public static void Main(string[] args)
        {
            Application.Init ();
            MainWindow win = new MainWindow ();
            //Thread.Sleep(2000);
            win.Show ();

            Application.Run ();
            //			Thread T0 = new Thread(new ThreadStart(popup));
            //			T0.Start();
            //			Thread T = new Thread(new ThreadStart(SpLoader));
            //			T.Start();
        }