/// <summary>
/// 追加文本到MemoEdit中
/// </summary>
string strText)
7: {
try
9: {
+ strText;
11: memoEdit.SelectionStart = memoEdit.Text.Length;
12: memoEdit.ScrollToCaret();
13: Application.DoEvents();
14: }
catch
16: {
return;
18: }
19: }