gpt4 book ai didi

C# - 在 TextBox 上使用异步和等待的跨线程错误

转载 作者:行者123 更新时间:2023-11-30 14:45:28 25 4
gpt4 key购买 nike

我是 Async 和 Await 的新手,创建了一个简单的项目以了解其工作原理。为此,我有一个包含 2 个元素的简单 Windows 窗体应用程序:

  • 获取已完成的项目按钮
  • 显示检索到的所有已完成项目的文本框

当我单击该按钮时,它应该会在 TextBox 中显示所有已完成的项目。这是我写的代码:

private async void btnGetCompletedItems_Click(object sender, EventArgs e)
{
QueueSystem queueSystem = QueueSystem.NewInstance(75);

Stopwatch watch = new Stopwatch();

watch.Start();
await Task.Run(() => GetCompletedItems(queueSystem));
watch.Stop();

lblTime.Text = $"{watch.ElapsedMilliseconds.ToString()} ms";

}

private void GetCompletedItems(QueueSystem queueSystem)
{
foreach (var item in queueSystem.GetCompletedItems())
{
txtItems.Text += $"{txtItems.Text}{item.ItemKey}{Environment.NewLine}";
}
}

但是,我在

中遇到了错误

txtItems.Text += $"{txtItems.Text}{item.ItemKey}{Environment.NewLine}";

错误说

Additional information: Cross-thread operation not valid: Control 'txtItems' accessed from a thread other than the thread it was created on.

我检查了 Debug 并为 GetCompletedItems() 创建了一个新线程。当我读到 Async 和 Await 时,我读到它不一定会创建一个新线程,但它似乎出于某种原因创建了一个新线程。

我对 Async 和 Await 的实现和理解有误吗?是否可以在 Windows 窗体应用程序中使用 Async 和 Await?

最佳答案

您不能在不同的线程上访问 UI 线程。这应该有帮助

private async void btnGetCompletedItems_Click(object sender, EventArgs e)
{
QueueSystem queueSystem = QueueSystem.NewInstance(75);

Stopwatch watch = new Stopwatch();

watch.Start();
var results = await Task.Run(() => queueSystem.GetCompletedItems());
foreach (var item in results)
{
txtItems.Text += $"{txtItems.Text}{item.ItemKey}{Environment.NewLine}";
}
watch.Stop();

lblTime.Text = $"{watch.ElapsedMilliseconds.ToString()} ms";

}

关于C# - 在 TextBox 上使用异步和等待的跨线程错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53440477/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com