Changed the system tray icon font scaling to adapt to the size of the tray icon in pixels, because on Windows 7 the tray icon scales with the system font size, while on Windows XP the tray icons are always 16 pixels large.
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