mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-02-02 11:41:04 +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);
|
||
|
}
|
||
|
}
|
||
|
}
|