This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
296 B
C#
Raw Normal View History

2019-05-16 18:07:36 -04:00
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;
}
}