Files
2025-04-07 07:44:27 -07:00

21 lines
321 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Aga.Controls.Tree
{
public class TreeColumnEventArgs: EventArgs
{
private TreeColumn _column;
public TreeColumn Column
{
get { return _column; }
}
public TreeColumnEventArgs(TreeColumn column)
{
_column = column;
}
}
}