如何在 Windows 窗体中创建非阻塞控件?
在我的表单上,我有一个 RichTextBox,它将不断更新文本(聊天应用程序)。我还有一个文本框,用户可以在其中输入他们想要发送的文本。
无论如何,当 RichTextBox 更新时,它会阻塞 UI 线程,这意味着我无法在 TextBox 中键入内容(或使用任何按钮),直到它完成更新为止。同样,当 TextBox 处理按键时,RTB 会被阻止(如果用户按住/乱按按键,这可能会出现问题)。
建议的处理方法是什么?
这是相关代码(为了简洁起见,按代码流程的顺序进行了缩写):
private void button1_Click(object sender, EventArgs e) {
new Thread(new ThreadStart(() => Start())).Start();
}
public void Start() {
irc = new IrcClient();
irc.OnRawMessage += new IrcEventHandler(OnRawMessage);
irc.Listen();
}
void OnRawMessage(object sender, IrcEventArgs e) {
WriteLine(e.Data.RawMessage);
}
void WriteLine(string line) {
this.BeginInvoke(new Action(() => richTextBox1.Text += line + "\n"));
this.BeginInvoke(new Action(() => ScrollToEnd(richTextBox1)));
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
防止 UI 冻结的唯一方法是永远不要在 UI 线程上执行大量工作。我认为问题出在这里:
乍一看,这似乎是一个很小的工作量:看起来您只要求
RichTextBox
附加一行。但是,如果您像这样使用它,RichTexBox
看不到“追加一行”和“刷新所有内容”之间的区别,因为上面的代码与此等效:它必须处理整个字符串每次。这就是为什么您应该使用 Text 属性rel="nofollow">附加文本。
The only way to prevent the UI from freezing is to never do a large amount of work on the UI thread. I think the problem is here:
At first sight this seems like a small amount of work: it looks like you only ask the
RichTextBox
to append a single line. However, theRichTexBox
doesn't see the difference between "append one line" and "refresh everything" if you use it like that because the above code is equivalent to this:It has to process the entire string each time. That's why instead of setting the
Text
property, you should use AppendText.