2018-01-25 23:13:36 +00:00
|
|
|
// This is free and unencumbered software released into the public domain.
|
|
|
|
// Happy coding!!! - GtkSharp Team
|
|
|
|
|
2018-01-21 18:54:58 +00:00
|
|
|
using System;
|
|
|
|
using Gtk;
|
|
|
|
|
|
|
|
namespace Samples
|
|
|
|
{
|
2018-01-27 20:47:02 +00:00
|
|
|
[Section(ContentType = typeof(AboutDialog), Category = Category.Dialogs)]
|
2018-01-21 18:54:58 +00:00
|
|
|
class AboutDialogSection : Box
|
|
|
|
{
|
|
|
|
public AboutDialogSection() : base(Orientation.Vertical, 0)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|