External/Aga.Controls/Tree/DropNodeValidatingEventArgs.cs
author moel.mich
Sun, 23 Sep 2012 18:37:43 +0000
changeset 380 573f1fff48b2
permissions -rw-r--r--
Fixed Issue 387. The new implementation does not try to start a ring 0 driver that already exists, but could not be opened. It tries to delete the driver and install it new. The driver is now stored temporarily in the application folder. The driver is not correctly removed on system shutdown.
     1 using System;
     2 using System.Drawing;
     3 
     4 namespace Aga.Controls.Tree
     5 {
     6 	public class DropNodeValidatingEventArgs: EventArgs
     7 	{
     8 		Point _point;
     9 		TreeNodeAdv _node;
    10 
    11 		public DropNodeValidatingEventArgs(Point point, TreeNodeAdv node)
    12 		{
    13 			_point = point;
    14 			_node = node;
    15 		}
    16 
    17 		public Point Point
    18 		{
    19 			get { return _point; }
    20 		}
    21 
    22 		public TreeNodeAdv Node
    23 		{
    24 			get { return _node; }
    25 			set { _node = value; }
    26 		}
    27 	}
    28 }