24 lines
359 B
C#
24 lines
359 B
C#
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)
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|