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,
- Vbox
- Statbar
- Toolbar
- Treeview
- ToolButton
Simple Gtk Window
Creates a simple Gtk window application
using System;
using Gtk;
using Gtk;
class WindowForm
{
static void Main ()
{
Application.Init ();
Window theWindow = new Window (”Window”);
theWindow.SetDefaultSize (400, 400);
theWindow.ShowAll ();
Application.Run ();
}
}
