loupiottes/DMX-2.0/MainWindow.cs
2013-04-09 16:20:40 +00:00

26 lines
No EOL
396 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;
}
protected void OnQuitActionActivated (object sender, EventArgs e)
{
Application.Quit ();
}
}
}