Keeping GUIs responsive during long-running tasks

前端 未结 9 2098
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-14 22:28

Keeping the GUI responsive while the application does some CPU-heavy processing is one of the challenges of effective GUI programming.

Here\'s a good discussion of h

9条回答
  •  再見小時候
    2020-12-14 23:17

    Threads. They're what I always go for because you can do it in every framework you need.

    And once you're used to multi-threading and parallel processing in one language/framework, you're good on all frameworks.

提交回复
热议问题