Added some small boring scripts and programs writen in few last years
[mirrors/Programs.git] / mono / testgtk / testgtk / MainWindow.cs
CommitLineData
21c4e167
H
1using System;
2using Gtk;
3
4public partial class MainWindow: Gtk.Window
5{
6 public MainWindow (): base (Gtk.WindowType.Toplevel)
7 {
8 Build ();
9 }
10
11 protected void OnDeleteEvent (object sender, DeleteEventArgs a)
12 {
13 Application.Quit ();
14 a.RetVal = true;
15 }
16}
This page took 0.090309 seconds and 4 git commands to generate.