protected override void OnWriteLog(string text)
 {
     if (outputPad == null)
     {
         throw GetDisposedException();
     }
     outputPad.WriteText(text);
 }
Esempio n. 2
0
 protected override void OnWriteLog(string text)
 {
     if (outputPad == null)
     {
         throw GetDisposedException();
     }
     Runtime.RunInMainThread(delegate {
         outputPad.WriteText(text);
     });
 }
 protected override void OnWriteLog(string text)
 {
     if (outputPad == null)
     {
         throw GetDisposedException();
     }
     DispatchService.GuiDispatch(delegate {
         outputPad.WriteText(text);
     });
 }