1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/External/Aga.Controls/Tree/TreeViewAdvCancelEventArgs.cs Sun May 27 15:16:19 2012 +0000
1.3 @@ -0,0 +1,23 @@
1.4 +using System;
1.5 +using System.Collections.Generic;
1.6 +using System.Text;
1.7 +
1.8 +namespace Aga.Controls.Tree
1.9 +{
1.10 + public class TreeViewAdvCancelEventArgs : TreeViewAdvEventArgs
1.11 + {
1.12 + private bool _cancel;
1.13 +
1.14 + public bool Cancel
1.15 + {
1.16 + get { return _cancel; }
1.17 + set { _cancel = value; }
1.18 + }
1.19 +
1.20 + public TreeViewAdvCancelEventArgs(TreeNodeAdv node)
1.21 + : base(node)
1.22 + {
1.23 + }
1.24 +
1.25 + }
1.26 +}