Front View plug-in does not init if no sensor added.
Fixing some format to make strings shorter.
Now trying to start SoundGraphAccess.exe process from same directory.
Packed mode now can display three sensors along with the current time.
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)