标签: c# thread-safety multithreading toolstrip
我有一个ToolStripLabel需要在单独的线程上从事件处理程序更新其Text属性。通常使用常规Label我一直在使用InvokeRequired属性并在InvokeRequired返回true时调用委托来完成工作。麻烦的是ToolStripLabel没有这个属性。以线程安全的方式更新此文本的最简洁方法是什么?
ToolStripLabel
Text
Label
InvokeRequired
答案 0 :(得分:5)
使用ToolStrip控件上的InvokeRequired而不是ToolStripLabel。