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 class TreeColumnEventArgs: EventArgs
9 private TreeColumn _column;
10 public TreeColumn Column
12 get { return _column; }
15 public TreeColumnEventArgs(TreeColumn column)