aurora/aurora-sharp-desktop/Aurora.gtk/MainWindow.cs
2021-03-05 23:10:12 -05:00

17 lines
296 B
C#

using System;
using Gtk;
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;
}
}