コード例 #1
0
 private void BackupSvc_ServiceOutputAsync(object sender, ServiceOutputEventArgs e)
 {
     Dispatcher.Invoke(() =>
     {
         StatusLabel.Content         = "Backup em andamento, aguarde...";
         progressBar.IsIndeterminate = true;
         StatusBackup.Content        = e.Message;
     });
 }
コード例 #2
0
 private void RestoreSvc_ServiceOutput(object sender, ServiceOutputEventArgs e)
 {
     Dispatcher.Invoke(() =>
     {
         StatusLabel.Content         = "Restauração em andamento, aguarde...";
         progressBar.IsIndeterminate = true;
         StatusRestauracao.Content   = e.Message;
     });
 }
コード例 #3
0
 private void backupSvc_ServiceOutput(object sender, ServiceOutputEventArgs e)
 {
     if (reorganizacao)
     {
         EscreveLinhaListBox(listBoxInfoReorganizacao, e.Message);
     }
     else
     {
         EscreveLinhaListBox(listBoxInfoBackup, e.Message);
     }
 }
コード例 #4
0
 void ServiceOutput(object sender, ServiceOutputEventArgs e)
 {
     Console.WriteLine(e.Message);
 }
コード例 #5
0
 void ServiceOutput(object sender, ServiceOutputEventArgs e)
 {
     TestContext.WriteLine(e.Message);
 }
コード例 #6
0
 private void ServiceOutput(object sender, ServiceOutputEventArgs e)
 {
     MessageBox.Show(e.Message);
     Application.DoEvents();
 }
コード例 #7
0
 static void instance_OutputGenerated(object sender, ServiceOutputEventArgs e)
 {
     Console.WriteLine("     --> " + e.Output);
 }
コード例 #8
0
ファイル: FbServicesTests.cs プロジェクト: dant02/NETProvider
 static void ServiceOutput(object sender, ServiceOutputEventArgs e)
 {
     var dummy = e.Message;
 }
コード例 #9
0
ファイル: BR_.cs プロジェクト: nigihayami/dataPump2.det
 static void ServiceOutput(object sender, ServiceOutputEventArgs e)
 {
     result = e.Message;
 }
コード例 #10
0
 private void ServiceOutput(object sender, ServiceOutputEventArgs e)
 {
     F_File.LogInformation(e.Message);
 }
コード例 #11
0
 void ServiceOutput(object sender, ServiceOutputEventArgs e)
 {
     tb.AppendText(String.Format(e.Message + Environment.NewLine));
     Debug.WriteLine(e.Message);
 }