C#:如何从另一个线程访问主 UI 线程中的整数?

发布于 2024-07-13 01:23:14 字数 141 浏览 4 评论 0原文

如何从异步回调函数的方法访问主窗体中的整数(增量 nCount++)?

我知道对于方法,您必须检查是否需要调用,然后作为委托调用预期方法的 begininvoke ,以避免非法线程操作,但是如何从另一个线程执行简单的操作,例如 nCount++ ?

How do you access an integer (increment nCount++) in the main form from the method of an asynchronous callback function?

I know that with methods you have to check if invoke is required, then call begininvoke for the intended method as a delegate, as to avoid an illegal threading operation, but how an you perform a simple operation such as nCount++ from another thread?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

骄兵必败 2024-07-20 01:23:14
Interlocked.Increment(ref variable);
Interlocked.Increment(ref variable);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文