Ryujinx-GtkSharp/Source/Samples/Sections/Widgets/ButtonCategory.cs
2018-01-20 20:09:27 +01:00

15 lines
332 B
C#

using System;
using Gtk;
namespace Samples
{
[SectionAttribute(Name = "Button", Category = Category.Widgets)]
class ButtonCategory : Box
{
public ButtonCategory() : base(Orientation.Vertical, 0)
{
var btn = new Button("Click Me");
PackStart(btn, true, true, 0);
}
}
}