first commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user