first commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Aga.Controls.Tree
|
||||
{
|
||||
public class TreeViewAdvCancelEventArgs : TreeViewAdvEventArgs
|
||||
{
|
||||
private bool _cancel;
|
||||
|
||||
public bool Cancel
|
||||
{
|
||||
get { return _cancel; }
|
||||
set { _cancel = value; }
|
||||
}
|
||||
|
||||
public TreeViewAdvCancelEventArgs(TreeNodeAdv node)
|
||||
: base(node)
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user