Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我喜欢在列表小部件上显示一个带有动画 gif 图像的标签。listwidget 在一个水平的小部件中。当我试图将该标签放在窗口上时,它水平对齐以列出小部件。我想用透明视图在 Listwidget 上显示它。
QMovie *m= new QMovie("loadingImage.gif"); QLabel *l=new QLabel(); ui.mainlayout->add l->setMovie(m); m->start(); l->show();
不要将透明小部件添加到布局中。只需将窗口设置为透明小部件的父级,然后显示小部件。然后,您负责定位透明小部件并调整其大小以覆盖列表小部件。