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 System.Windows.Forms;
7 namespace Aga.Controls.Tree
9 public class TreeViewRowDrawEventArgs: PaintEventArgs
16 public TreeViewRowDrawEventArgs(Graphics graphics, Rectangle clipRectangle, TreeNodeAdv node, DrawContext context, int row, Rectangle rowRect)
17 : base(graphics, clipRectangle)
25 public TreeNodeAdv Node
30 public DrawContext Context
32 get { return _context; }
40 public Rectangle RowRect
42 get { return _rowRect; }