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.Threading;
6 namespace Aga.Controls.Threading
8 public sealed class WorkItem
10 private WaitCallback _callback;
11 private object _state;
12 private ExecutionContext _ctx;
14 internal WorkItem(WaitCallback wc, object state, ExecutionContext ctx)
21 internal WaitCallback Callback
37 internal ExecutionContext Context