2017-09-23 14:38:43 +00:00
|
|
|
using System;
|
|
|
|
using Gtk;
|
|
|
|
using UI = Gtk.Builder.ObjectAttribute;
|
|
|
|
|
|
|
|
namespace ${Namespace}
|
|
|
|
{
|
|
|
|
public class ${EscapedIdentifier} : Box
|
|
|
|
{
|
|
|
|
public ${EscapedIdentifier}() : this(new Builder("${Namespace}.${EscapedIdentifier}.glade")) { }
|
|
|
|
|
|
|
|
private ${EscapedIdentifier}(Builder builder) : base(builder.GetObject("${EscapedIdentifier}").Handle)
|
|
|
|
{
|
2018-02-28 17:55:16 +00:00
|
|
|
builder.Autoconnect(this);
|
2017-09-23 14:38:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|