Added the source code of the WinRing0 device driver.
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; }