loupiottes/DMX-2.0/MainWindow.cs
2013-04-08 15:27:18 +00:00

20 lines
No EOL
294 B
C#

using System;
using Gtk;
namespace DMX2
{
public partial class MainWindow: Gtk.Window
{
public MainWindow (): base (Gtk.WindowType.Toplevel)
{
Build ();
}
protected void OnDeleteEvent (object sender, DeleteEventArgs a)
{
Application.Quit ();
a.RetVal = true;
}
}
}