SharpDisplay: Migrating to new robust client scheme.
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)