Ejemplo n.º 1
0
 public void Close()
 {
     if (NProcess != null && !NProcess.HasExited)
     {
         NProcess.Kill();
     }
 }
Ejemplo n.º 2
0
 public void Visit(NProcess component)
 {
     component.View = PostProcessView(new NProcessView(component));
 }
Ejemplo n.º 3
0
 public NProcessView(NProcess element)
     : base(element)
 {
     this.element = element;
 }