示例#1
0
 internal void RaiseExecuting(CommandExecutionEventArgs e)
 {
     if (this.CommandExecuting != null)
     {
         this.CommandExecuting(this, e);
     }
 }
示例#2
0
 internal void RaiseFinished(CommandExecutionEventArgs e)
 {
     if (this.CommandFinished != null)
     {
         this.CommandFinished(this, e);
     }
 }