21 lines
321 B
C#
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;
|
|
}
|
|
}
|
|
}
|