10d5bc49469b9147a7f4b0792e023ca32f4dd8ae
[mirrors/Programs.git] / MainWindow.cs
1 using System;
2 using Gtk;
3
4 public 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.231692 seconds and 3 git commands to generate.