crossthread operations error

后端 未结 3 725
礼貌的吻别
礼貌的吻别 2021-01-25 21:43
      if (listBox1.InvokeRequired)
       {
           listBox = new StringBuilder(this.listBox1.Text);
       }

This is the code in c# which when exec

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-25 22:26

    InvokeRequired simply checks to see if Invoke is required. You found it's required, yet didn't call Invoke!

提交回复
热议问题