author | lenclud@WUE-9BW295J.ad.garmin.com |
Wed, 17 Apr 2013 17:09:21 +0200 (2013-04-17) | |
changeset 399 | 580df602ff73 |
permissions | -rw-r--r-- |
1 using System;
2 using System.Drawing;
4 namespace Aga.Controls.Tree
5 {
6 public class DropNodeValidatingEventArgs: EventArgs
7 {
8 Point _point;
9 TreeNodeAdv _node;
11 public DropNodeValidatingEventArgs(Point point, TreeNodeAdv node)
12 {
13 _point = point;
14 _node = node;
15 }
17 public Point Point
18 {
19 get { return _point; }
20 }
22 public TreeNodeAdv Node
23 {
24 get { return _node; }
25 set { _node = value; }
26 }
27 }
28 }