开发者

Equivalent of GtkSpinner in Qt?

开发者 https://www.devze.com 2023-02-02 22:16 出处:网络
I\'ve been searching the Qt docs for something similar to a GtkSpinner, but found only the possibility to use a QProgressBar with minimum and maximum b开发者_开发问答oth set to 0, which however is not

I've been searching the Qt docs for something similar to a GtkSpinner, but found only the possibility to use a QProgressBar with minimum and maximum b开发者_开发问答oth set to 0, which however is not what I want.

Is there such a widget in Qt?


QLabel label;
QMovie * movie = new QMovie("animated.gif");
label.setMovie(movie);
movie->start();

As seen in spinner (delay) button thread on QtCentre

0

精彩评论

暂无评论...
验证码 换一张
取 消