GtkSharp/Source/Samples/Sections/Widgets/ButtonCategory.cs

15 lines
332 B
C#
Raw Normal View History

2018-01-20 19:09:27 +00:00
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);
}
}
}