PingPong/PingPong/MainWindow.cs

17 lines
262 B
C#
Raw Normal View History

2019-11-08 03:33:41 -06: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;
}
}