Пример #1
0
 public Configure(bool show)
 {
     pipeWatcher = new PipeWatcher(this);
     pipeWatcher.Begin();
     settings = new Settings();
     InitializeComponent();
     allowVisible = show;
 }
Пример #2
0
 public Configure(bool show)
 {
     pipeWatcher = new PipeWatcher(this);
     pipeWatcher.Begin();
     settings = new Settings();
     InitializeComponent();
     allowVisible = show;
 }
Пример #3
0
 private void Configure_FormClosed(object sender, FormClosedEventArgs e)
 {
     try {
         scriptMan.Watcher.EndWatch();
         PipeWatcher.SendBreakRequest();
     }
     catch {
     }
     finally {
         //Environment.Exit(0);
     }
 }