14 lines
248 B
C#
14 lines
248 B
C#
|
using System;
|
||
|
using Gtk;
|
||
|
|
||
|
namespace Samples
|
||
|
{
|
||
|
[Section(Name = "AboutDialog", Category = Category.Dialogs)]
|
||
|
class AboutDialogSection : Box
|
||
|
{
|
||
|
public AboutDialogSection() : base(Orientation.Vertical, 0)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|