2017-09-23 16:38:43 +02: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 18:55:16 +01:00
|
|
|
builder.Autoconnect(this);
|
2017-09-23 16:38:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|