17 lines
399 B
C#
17 lines
399 B
C#
|
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)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|