1

My desktop application has many operations which can take a while (for example file is downloading) and I want to disable all UI interactions until file is downloaded. For now I solved this by creating modal dialog with progress and status info. I'm wondering if Qt has some fancy solution for that? For example, in Android API you can easily create global progres like on this picture: enter image description here

As you can see, background is nicely shaded. Can I have similar effect with Qt?

4

1 回答 1

2

我认为您可以使用 QProgressDialog,正如其他 StackOverflow 帖子中所述。它应该是适合您的解决方案...

于 2013-11-13T16:27:54.157 回答