15 lines
361 B
C#
15 lines
361 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, ResponseArgs args) {
|
|
Dispose();
|
|
}
|
|
}
|
|
}
|