gpt4 book ai didi

c# - 如何从创建它的线程以外的线程读取组合框?

转载 作者:IT王子 更新时间:2023-10-29 04:13:35 25 4
gpt4 key购买 nike

我正在尝试从创建它的线程以外的线程读取组合框文本,但出现错误:

An unhandled exception of type 'System.InvalidOperationException' occurred in System.Windows.Forms.dll

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

我之前使用过.Invoke,但只是设置属性,我如何使用它来读取combobox.Text?因为 .Invoke 返回 void 并且我需要一个字符串。或者有没有其他方法可以在没有调用的情况下做到这一点?

最佳答案

你可以这样做:

this.Invoke((MethodInvoker)delegate()
{
text = combobox.Text;
});

关于c# - 如何从创建它的线程以外的线程读取组合框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5516111/

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