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;
5 namespace Aga.Controls.Tree
7 public struct DropPosition
9 private TreeNodeAdv _node;
10 public TreeNodeAdv Node
13 set { _node = value; }
16 private NodePosition _position;
17 public NodePosition Position
19 get { return _position; }
20 set { _position = value; }