• 查看主题

  • 查看主题说明文字
有价值的内容收集
#93 adm1n
周日 1月 03, 2016 6:47 pm
代码: 全选 //========richtextbox scroll to the last line //get the focus fo the richtextbox RecRichTextBox.Focus(); //move the focus to the last line RecRichTextBox.Select(RecRichTextBox.TextLength, 0); //scroll to the last line RecRichTextBox.ScrollToCaret(); RecRichTextBox.AppendText(value); } }