first commit
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Aga.Controls.Tree.NodeControls;
|
||||
using System.Drawing;
|
||||
|
||||
namespace Aga.Controls.Tree
|
||||
{
|
||||
public struct NodeControlInfo
|
||||
{
|
||||
public static readonly NodeControlInfo Empty = new NodeControlInfo(null, Rectangle.Empty, null);
|
||||
|
||||
private NodeControl _control;
|
||||
public NodeControl Control
|
||||
{
|
||||
get { return _control; }
|
||||
}
|
||||
|
||||
private Rectangle _bounds;
|
||||
public Rectangle Bounds
|
||||
{
|
||||
get { return _bounds; }
|
||||
}
|
||||
|
||||
private TreeNodeAdv _node;
|
||||
public TreeNodeAdv Node
|
||||
{
|
||||
get { return _node; }
|
||||
}
|
||||
|
||||
public NodeControlInfo(NodeControl control, Rectangle bounds, TreeNodeAdv node)
|
||||
{
|
||||
_control = control;
|
||||
_bounds = bounds;
|
||||
_node = node;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user