2017-11-02 16:12:15 +00:00
|
|
|
using System;
|
|
|
|
using Gtk;
|
|
|
|
using UI = Gtk.Builder.ObjectAttribute;
|
|
|
|
|
|
|
|
namespace GtkNamespace
|
|
|
|
{
|
|
|
|
class Gtk_Window : Window
|
|
|
|
{
|
|
|
|
public Gtk_Window() : this(new Builder("Gtk_Window.glade")) { }
|
|
|
|
|
2021-03-19 18:31:57 +00:00
|
|
|
private Gtk_Window(Builder builder) : base(builder.GetRawOwnedObject("Gtk_Window"))
|
2017-11-02 16:12:15 +00:00
|
|
|
{
|
|
|
|
builder.Autoconnect(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|