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.
2 using System.Collections.Generic;
4 using Aga.Controls.Tree.NodeControls;
7 namespace Aga.Controls.Tree
9 public struct NodeControlInfo
11 public static readonly NodeControlInfo Empty = new NodeControlInfo(null, Rectangle.Empty, null);
13 private NodeControl _control;
14 public NodeControl Control
16 get { return _control; }
19 private Rectangle _bounds;
20 public Rectangle Bounds
22 get { return _bounds; }
25 private TreeNodeAdv _node;
26 public TreeNodeAdv Node
31 public NodeControlInfo(NodeControl control, Rectangle bounds, TreeNodeAdv node)