Front View plug-in does not init if no sensor added.
Fixing some format to make strings shorter.
Now trying to start SoundGraphAccess.exe process from same directory.
Packed mode now can display three sensors along with the current time.
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