mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
3a9a6e8305
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4764 21ef857c-d57f-4fe0-8362-d861dc6d29cd
22 lines
529 B
C#
22 lines
529 B
C#
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);
|
|
|
|
public NodeControl Control;
|
|
public Rectangle Bounds;
|
|
public TreeNodeAdv Node;
|
|
|
|
public NodeControlInfo(NodeControl control, Rectangle bounds, TreeNodeAdv node) : this()
|
|
{
|
|
this.Control = control;
|
|
this.Bounds = bounds;
|
|
this.Node = node;
|
|
}
|
|
}
|
|
}
|