Beispiel #1
0
 public ProcessStartInformation(string fileName, ObservableCollection <string> arguments = null, string verb = null, ProcessStartWindowStyle windowStyle = ProcessStartWindowStyle.Normal, int delay = 0)
 {
     FullPath    = fileName;
     Arguments   = arguments;
     Verb        = verb;
     WindowStyle = windowStyle;
     Delay       = delay;
 }
Beispiel #2
0
 public void Clear()
 {
     FullPath    = null;
     Arguments   = null;
     Verb        = null;
     WindowStyle = ProcessStartWindowStyle.Normal;
     Delay       = 0;
 }