Example #1
0
 private void OnLogInfoChanged(LogInfoChangedArgs args)
 {
     if (LogInfoChanged != null)
     {
         LogInfoChanged(this, args);
     }
 }
Example #2
0
 private void m_spMgr_LogInfoChanged(object sender, LogInfoChangedArgs args)
 {
     tbLog.Dispatcher.Invoke(
         System.Windows.Threading.DispatcherPriority.Normal,
         new Action(
             delegate() {
         tbLog.Text += args.LogInfo;
         tbLog.Text += "\r\n";
     }
             )
         );
 }
Example #3
0
 private void m_spMgr_LogInfoChanged(object sender, LogInfoChangedArgs args)
 {
     tbLog.Dispatcher.Invoke(
     System.Windows.Threading.DispatcherPriority.Normal,
     new Action(
         delegate() {
             tbLog.Text += args.LogInfo;
             tbLog.Text += "\r\n";
         }
         )
     );
 }
Example #4
0
 private void OnLogInfoChanged(LogInfoChangedArgs args)
 {
     if (LogInfoChanged != null)
     {
         LogInfoChanged(this, args);
     }
 }