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 System.Windows.Forms;
7 namespace Aga.Controls.Tree
9 public class TreeViewRowDrawEventArgs: PaintEventArgs
16 public TreeViewRowDrawEventArgs(Graphics graphics, Rectangle clipRectangle, TreeNodeAdv node, DrawContext context, int row, Rectangle rowRect)
17 : base(graphics, clipRectangle)
25 public TreeNodeAdv Node
30 public DrawContext Context
32 get { return _context; }
40 public Rectangle RowRect
42 get { return _rowRect; }