Ryujinx-GtkSharp/glade/GladeWidgetAttribute.cs
Rachel Hestilow 3841924432 2003-01-01 Rachel Hestilow <hestilow@ximian.com>
* glade/XML.custom: New method BindFields.
	(Autoconnect): Call BindFields.
	* glade/GladeWidgetAttribute.cs: Added.

	* sample/GladeTest.cs: Test GladeWidgetAttribute.

svn path=/trunk/gtk-sharp/; revision=10048
2003-01-01 21:37:45 +00:00

27 lines
400 B
C#

// GladeWidgetAttribute.cs
//
// Author: Rachel Hestilow <hestilow@ximian.com>
//
// (c) 2003 Rachel Hestilow
namespace Glade {
using System;
[AttributeUsage (AttributeTargets.Field)]
public class GladeWidgetAttribute : Attribute
{
private string name;
public GladeWidgetAttribute (string name)
{
this.name = name;
}
public string Name
{
get { return name; }
}
}
}