mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 14:15:34 +00:00
17 lines
425 B
C#
17 lines
425 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)
|
|
{
|
|
builder.Autoconnect(this);
|
|
}
|
|
}
|
|
}
|