public NotificationArea(string[] savedPinnedIcons, TrayService trayService, ExplorerTrayService explorerTrayService)
 {
     PinnedNotifyIcons    = savedPinnedIcons;
     _trayService         = trayService;
     _explorerTrayService = explorerTrayService;
 }
 public NotificationArea(TrayService trayService, ExplorerTrayService explorerTrayService) : this(DEFAULT_PINNED, trayService, explorerTrayService)
 {
 }