Beispiel #1
0
 /// <summary>
 /// Terminates Omicron files.
 /// </summary>
 public KillOmicronFilesCommand( )
 {
     this.Command = new DefaultCommand(this.KillOmicronFiles, this.CanExecute);
 }
Beispiel #2
0
 /// <summary>
 /// Update progress bar and strings attached to them.
 /// </summary>
 public UpdateCommand( )
 {
     this.Command = new DefaultCommand(this.ExecuteUpdate, this.CanUpdate);
 }
Beispiel #3
0
 /// <summary>
 /// Provides Stop Button command.
 /// </summary>
 public StopCommand( )
 {
     this.Command = new DefaultCommand(this.ExecuteStop, this.CanExecute);
 }
 /// <summary>
 /// Provides FindReplace Button command.
 /// </summary>
 public FindReplaceCommand()
 {
     // this.Command = new DefaultCommand(this.ExecuteFindReplace, this.CanExecute);
     Command = new DefaultCommand(ExecuteFindReplace);
 }
Beispiel #5
0
 /// <summary>
 ///
 /// </summary>
 public EraseDelegateCommand( )
 {
     this.Command = new DefaultCommand(this.ExecuteErase, this.CanErase);
 }