Invoke() is blocking

前端 未结 4 2318
慢半拍i
慢半拍i 2021-02-12 12:49

From time to time my applications GUI stops redrawing. There a lot of threads that are firing all kinds of events (like timers or network data ready etc.). Also there are a lot

4条回答
  •  你的背包
    2021-02-12 13:07

    Invoke waits until the event is handled in the GUI thread. If you want it to be asynchronous use BeginInvoke()

提交回复
热议问题