码迷,mamicode.com
首页 > 编程语言 > 详细

TextBox 保持固定长度,添加新行滚动到最后,跨线程。

时间:2019-11-06 23:15:13      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:ext   substring   scroll   scrollto   跨线程   app   method   ndt   invoke   

txtBxMsg.BeginInvoke((MethodInvoker)delegate
{
if (txtBxMsg.Text.Length > 10000)
txtBxMsg.Text = txtBxMsg.Text.Substring(txtBxMsg.Text.Length - 10000);
txtBxMsg.AppendText( "\r\n" + AMsg);
txtBxMsg.ScrollToCaret();
});

TextBox 保持固定长度,添加新行滚动到最后,跨线程。

标签:ext   substring   scroll   scrollto   跨线程   app   method   ndt   invoke   

原文地址:https://www.cnblogs.com/percent10/p/11809055.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!