External/Aga.Controls/Tree/DropNodeValidatingEventArgs.cs
changeset 345 0c551e8818e0
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/External/Aga.Controls/Tree/DropNodeValidatingEventArgs.cs	Sun May 27 15:16:19 2012 +0000
     1.3 @@ -0,0 +1,28 @@
     1.4 +using System;
     1.5 +using System.Drawing;
     1.6 +
     1.7 +namespace Aga.Controls.Tree
     1.8 +{
     1.9 +	public class DropNodeValidatingEventArgs: EventArgs
    1.10 +	{
    1.11 +		Point _point;
    1.12 +		TreeNodeAdv _node;
    1.13 +
    1.14 +		public DropNodeValidatingEventArgs(Point point, TreeNodeAdv node)
    1.15 +		{
    1.16 +			_point = point;
    1.17 +			_node = node;
    1.18 +		}
    1.19 +
    1.20 +		public Point Point
    1.21 +		{
    1.22 +			get { return _point; }
    1.23 +		}
    1.24 +
    1.25 +		public TreeNodeAdv Node
    1.26 +		{
    1.27 +			get { return _node; }
    1.28 +			set { _node = value; }
    1.29 +		}
    1.30 +	}
    1.31 +}