Exemple #1
0
        public static void Main(string[] args)
        {
            GLib.Thread.Init ();
            Gtk.Application.Init ();

            ColorMaker maker = new ColorMaker ();

            Gtk.Window window = new Gtk.Window ("Test");
            window.Add (maker);
            window.ShowAll ();

            Gtk.Application.Run ();
        }
Exemple #2
0
        public static void Main(string[] args)
        {
            GLib.Thread.Init();
            Gtk.Application.Init();

            ColorMaker maker = new ColorMaker();

            Gtk.Window window = new Gtk.Window("Test");
            window.Add(maker);
            window.ShowAll();

            Gtk.Application.Run();
        }