first commit

This commit is contained in:
2025-04-07 07:44:27 -07:00
commit d6cde0c05e
512 changed files with 142392 additions and 0 deletions

View File

@@ -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;
}
}
}