示例#1
0
 public ScriptManager(NotifyIcon icon, IEnumerable<Script> scripts)
 {
     NotifyIcon = icon;
     Watcher = new SysWatcher();
     allEvents = new List<SysEvent>();
     foreach (Script s in scripts) {
         AddScript(s);
     }
 }
示例#2
0
 public ScriptManager(NotifyIcon icon, IEnumerable <Script> scripts)
 {
     NotifyIcon = icon;
     Watcher    = new SysWatcher();
     allEvents  = new List <SysEvent>();
     foreach (Script s in scripts)
     {
         AddScript(s);
     }
 }