16 lines
367 B
C#
16 lines
367 B
C#
|
using Gtk;
|
||
|
|
||
|
namespace Buypeeb {
|
||
|
public class AboutDialogue : AboutDialog {
|
||
|
public AboutDialogue() : this(new Builder("about.glade")) { }
|
||
|
|
||
|
private AboutDialogue(Builder builder) : base(builder.GetObject("DialogueAbout").Handle) {
|
||
|
builder.Autoconnect(this);
|
||
|
}
|
||
|
|
||
|
public void ButtonCloseClicked(object sender, Gtk.ResponseArgs args) {
|
||
|
Dispose();
|
||
|
}
|
||
|
}
|
||
|
}
|