protected void WriteNow(string msg) { if (Dispatcher.CheckAccess()) { Text += msg; MessageAppEx.LogSev(Severity.Info, msg); } else { Dispatcher.Invoke(System.Windows.Threading.DispatcherPriority.Normal, new TextChanger(this.WriteNow), msg); } }
protected void WriteLog(string msg) { MessageAppEx.LogSev(Severity.Info, "{0}", msg); }