mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 02:15:33 +00:00
26 lines
399 B
C#
26 lines
399 B
C#
|
// 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 class TreeNodeValueAttribute : Attribute {
|
||
|
int col;
|
||
|
|
||
|
public int Column {
|
||
|
get {
|
||
|
return col;
|
||
|
}
|
||
|
set {
|
||
|
col = value;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|