This repository has been archived on 2020-12-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
aurora-sharp-desktop/Aurora.gtk/MainWindow.cs
2019-05-16 18:07:36 -04: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;
}
}