Gtk GUI

Over the last couple of days i’ve been looking at GUI of a form.
As you can see from the code below, it shows how to create a window with the follow widges,

  1. Vbox
  2. Statbar
  3. Toolbar
  4. Treeview
  5. ToolButton

mono01.png

Posted at 8pm on 09/03/07 | no comments | Filed Under: Gtk#, Forms read on

Simple Gtk Window

Creates a simple Gtk window application

using System;
using Gtk;

class WindowForm
{
static void Main ()
{
Application.Init ();
Window theWindow = new Window (”Window”);
theWindow.SetDefaultSize (400, 400);

theWindow.ShowAll ();
Application.Run ();
}
}

Posted at 4pm on 08/28/07 | no comments | Filed Under: Forms read on

Pages

Categories