Migrated aurora-sharp-desktop to /aurora-sharp-desktop

This commit is contained in:
Brandon Watson
2021-03-05 22:45:05 -05:00
parent 3d4dada7c2
commit a8e418cc1b
187 changed files with 10337 additions and 0 deletions

View File

@ -0,0 +1,16 @@
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;
}
}