Adding SoundGraphDisplay and SensorFrontView classes.
They were respectively based on SystemTray and SensorNotifyIcon.
SoundGraphDisplay is now able to load iMONDisplay.dll providing it lives on your PATH.
Adding option to sensor context menu for adding it into FrontView.
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)