本文介绍了是否有必要从工作线程使用Invoke for User Controls?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在主线程上创建了一个用户控件。让我们说,为了论证
,它有一个维护私有变量的属性。如果我想要从工作线程设置该属性,我是否需要使用
UserControl1.Invoke来设置它,或者我可以设置它吗?毕竟,改变私人变量只是
。
TIA
Charles
I have a user control created on the main thread. Let''s say, for arguments
sake, that it has a single property that maintains a private variable. If I
want to set that property from a worker thread, do I need to use
UserControl1.Invoke to set it, or can I just set it? After all, it is only
changing a private variable.
TIA
Charles
推荐答案
这篇关于是否有必要从工作线程使用Invoke for User Controls?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!