using System; using Gtk; using mCloudAwk; namespace mCloudGui { public partial class DirectorySelectionWin : Gtk.Window { private IMCloudAwk MCA; public DirectorySelectionWin () : base(Gtk.WindowType.Toplevel) { this.Build (); this.MCA = new MCloudMgr (); } protected void OnDeleteEvent (object sender, DeleteEventArgs a) { MCA.Dispose (); Application.Quit (); a.RetVal = true; } } }