コード例 #1
0
ファイル: MainWindow.xaml.cs プロジェクト: ledgarl/Samples
 public void notify(string result)
 {
     if (NotifyInvoked != null)
     {
         var args = new NotifyInvokedEventArgs { Result = result };
         NotifyInvoked(this, args);
     }
 }
コード例 #2
0
 public void notify(string result)
 {
     if (NotifyInvoked != null)
     {
         var args = new NotifyInvokedEventArgs {
             Result = result
         };
         NotifyInvoked(this, args);
     }
 }