C# Example
using System;
using Gtk;
class WindowTester {
static void Main ()
{
Application.Init ();
Window myWindow = new Window ("This is a window");
myWindow.DeleteEvent += OnDelete;
myWindow.SetDefaultSize (200, 200);
//Put a button in the Window
Button button = new Button ("Click");
myWindow.Add (button);
myWindow.ShowAll ();
Application.Run ();
}
static void OnDelete (object o, DeleteEventArgs e)
{
Application.Quit ();
}
}
See Also: Window Members