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 TreePathEventArgs : EventArgs
9 private TreePath _path;
15 public TreePathEventArgs()
17 _path = new TreePath();
20 public TreePathEventArgs(TreePath path)
23 throw new ArgumentNullException();