2021-10-23 17:35:20 +00:00
|
|
|
using Gtk;
|
|
|
|
|
|
|
|
namespace Buypeeb {
|
|
|
|
public class AboutDialogue : AboutDialog {
|
|
|
|
public AboutDialogue() : this(new Builder("about.glade")) { }
|
2021-10-23 17:38:07 +00:00
|
|
|
|
2021-10-23 17:35:20 +00:00
|
|
|
private AboutDialogue(Builder builder) : base(builder.GetObject("DialogueAbout").Handle) {
|
|
|
|
builder.Autoconnect(this);
|
|
|
|
}
|
|
|
|
|
2021-10-23 17:38:07 +00:00
|
|
|
public void ButtonCloseClicked(object sender, ResponseArgs args) {
|
2021-10-23 17:35:20 +00:00
|
|
|
Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|