예제 #1
0
 private void Log(string msg)
 {
     this.Dispatcher.Invoke(() =>
     {
         DebugOutput.Text = DebugOutput.Text + "\n" + msg;
         DebugOutput.ScrollToEnd();
     });
 }