Skip to content

What We Know About Progress Dialogs

russ_hensel edited this page Dec 28, 2025 · 7 revisions

Progress dialogs are a problem because the task, which we hope is making progress, easily is busy enough to stop anything from happening on the GUI.

We have several different examples that work around that problem, using one of two major approaches:

*Use a second thread for the task. *Use an iterator ( or similar ) and keep all the work in one thread.

Clone this wiki locally