Example #1
0
 public static void Main(string[] args)
 {
     Application.Init ();
     TestWindow test = new TestWindow();
     test.Show();
     TestWindow2 test2 = new TestWindow2();
     test2.Show();
     TestWindow3 test3 = new TestWindow3();
     test3.Show();
     Application.Run();
 }
Example #2
0
 public static void Main(string[] args)
 {
     Logger.GetInstance().ShowDebugInfo = true;
     Application.Init ();
     TestWindow test = new TestWindow();
     test.Show();
     TestWindow2 test2 = new TestWindow2();
     test2.Show();
     TestWindow3 test3 = new TestWindow3();
     test3.Show();
     Application.Run();
 }