我正在将一种方法从 wpf 项目转移到我的 winforms 项目。
除此部分外的所有内容均已毫无问题地移动:
private void ServerProcErrorDataReceived(object sender, DataReceivedEventArgs e)
{
// You have to do this through the Dispatcher because this method is called by a different Thread
Dispatcher.Invoke(new Action(() =>
{
richTextBox_Console.Text += e.Data + Environment.NewLine;
richTextBox_Console.SelectionStart = richTextBox_Console.Text.Length;
richTextBox_Console.ScrollToCaret();
ParseServerInput(e.Data);
}));
}
我不知道如何转换Dispatcher
为winforms。
谁能帮我吗?