60376ae510
* feat: GtkSharp net6 workload * feat(Workload): GtkSharp template packs * chore: Support .NET SDK 6.0.300 And also changed the build script to target SDK bands. * build: Workload install and uninstall targets
16 lines
363 B
C#
16 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);
|
|
}
|
|
}
|
|
}
|