1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
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; }
}
}
}
|