Added about dialog, menu action stubs

This commit is contained in:
Latif Khalifa
2013-12-03 20:30:58 +01:00
parent d64fdceee3
commit 6ae5644b4e
10 changed files with 502 additions and 120 deletions

18
Programs/GridProxyGUI/About.cs Executable file
View File

@@ -0,0 +1,18 @@
using System;
namespace GridProxyGUI
{
public partial class About : Gtk.Dialog
{
public About()
{
this.Build();
}
protected void OnButtonOkClicked (object sender, EventArgs e)
{
Hide();
}
}
}