1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// project created on 12/15/2006 at 11:25 AM using System; using Gtk; namespace Controller { class MainClass { public static void Main (string[] args) { Application.Init (); MainWindow win = new MainWindow (); win.Show (); Application.Run (); } } }