/// <summary> /// Log输出 /// </summary> /// <param name="msg"></param> public void Log(object msg) { LogText.AppendText(msg.ToString()); LogText.AppendText(Environment.NewLine); LogText.ScrollToVerticalOffset(LogText.ExtentHeight); }