mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-10 01:45:31 +00:00
17 lines
363 B
C#
17 lines
363 B
C#
using System;
|
|
using Gtk;
|
|
using UI = Gtk.Builder.ObjectAttribute;
|
|
|
|
namespace GtkNamespace
|
|
{
|
|
public class Gtk_Widget : Box
|
|
{
|
|
public Gtk_Widget() : this(new Builder("Gtk_Widget.glade")) { }
|
|
|
|
private Gtk_Widget(Builder builder) : base(builder.GetRawOwnedObject("Gtk_Widget"))
|
|
{
|
|
builder.Autoconnect(this);
|
|
}
|
|
}
|
|
}
|