Ryujinx-GtkSharp/gtk/TreeNodeValueAttribute.cs

26 lines
406 B
C#
Raw Normal View History

// TreeNodeValueAttribute.cs - Attribute to mark properties as TreeNode column values
//
// Author: Mike Kestner <mkestner@ximian.com>
//
// <c> 2003 Novell, Inc.
namespace Gtk {
using System;
[AttributeUsage(AttributeTargets.Property)]
public sealed class TreeNodeValueAttribute : Attribute {
int col;
public int Column {
get {
return col;
}
set {
col = value;
}
}
}
}