如何在“BeginInvoke”中设置变量的值C# 中的委托函数?
我在不同的线程上有这段代码:
string sub = "";
this.BeginInvoke((Action)(delegate()
{
try
{
sub = LISTVIEW.Items[x].Text.Trim();
}
catch
{
}
}));
MessageBox.Show(sub);
我想要的是获取“LISTVIEW.Items[x].Text.Trim();
”的值并将其传递给“sub”。请注意,LISTVIEW 控件位于主线程上。现在我怎样才能做到这一点?
enter code here
I have this code on different thread:
string sub = "";
this.BeginInvoke((Action)(delegate()
{
try
{
sub = LISTVIEW.Items[x].Text.Trim();
}
catch
{
}
}));
MessageBox.Show(sub);
what I want is to get the value of "LISTVIEW.Items[x].Text.Trim();
" and pass it to "sub". please note that the LISTVIEW control is on the main thread. now how can I accomplish this?
enter code here
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,您需要小心使用 EndInvoke,因为它可能会导致死锁。
如果您更喜欢委托语法,您也可以更改
为
您仍然需要从所有分支返回一些内容并调用结束调用。
You, of course, need to be a bit careful with EndInvoke because it can cause deadlocks.
if you prefer delegate syntax you can also change
to
you stll need to return something from all branches and call end invoke.