17 lines
358 B
C#
17 lines
358 B
C#
|
using System;
|
||
|
using Gtk;
|
||
|
using UI = Gtk.Builder.ObjectAttribute;
|
||
|
|
||
|
namespace GtkNamespace
|
||
|
{
|
||
|
class Gtk_Window : Window
|
||
|
{
|
||
|
public Gtk_Window() : this(new Builder("Gtk_Window.glade")) { }
|
||
|
|
||
|
private Gtk_Window(Builder builder) : base(builder.GetObject("Gtk_Window").Handle)
|
||
|
{
|
||
|
builder.Autoconnect(this);
|
||
|
}
|
||
|
}
|
||
|
}
|