Inheritance: Gtk.Window, IDrawingEditor
Esempio n. 1
0
 public static void Main(string[] args)
 {
     Application.Init ();
     MainWindow win = new MainWindow ();
     win.ShowAll ();
     Application.Run ();
 }
Esempio n. 2
0
        public static void Main(string []args)
        {
            MainWindow window;

            Application.Init ();

            window = new MainWindow ();
            window.Title = "ClockFigure sample";
            window.ShowAll ();
            window.SetSizeRequest (350, 350);
            window.Move (100, 100);

            Application.Run ();
        }