Ryujinx-GtkSharp/sample/GtkDemo/DemoAttribute.cs
John Luke 4da41dbe67 use reflection to handle the TreeView and launching of the demos
Add a DemoAttribute to all the demos to support this

svn path=/trunk/gtk-sharp/; revision=37669
2004-12-12 22:11:44 +00:00

37 lines
590 B
C#

using System;
namespace GtkDemo
{
[AttributeUsage (AttributeTargets.Class)]
public class DemoAttribute : Attribute
{
string label, filename, parent;
public DemoAttribute (string label, string filename) : this (label, filename, null)
{
}
public DemoAttribute (string label, string filename, string parent)
{
this.label = label;
this.filename = filename;
this.parent = parent;
}
public string Filename {
get { return filename; }
}
public string Label {
get { return label; }
}
public string Parent {
get {
return parent;
}
}
}
}