mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-22 20:50:57 +00:00
15 lines
332 B
C#
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);
|
|
}
|
|
}
|
|
} |