QT4 splash 显示信息失败。。。。高手帮忙啊

发布于 2022-08-02 13:50:36 字数 2060 浏览 15 评论 1

//如下为代码,splash图片可以显示出来,而信息却显示不出来,对话框也可以显示出来

#include <QApplication>
#include <QSplashScreen>
#include <QMessageBox>
#include <QObject>

#include "MainDialog.h"

#include<unistd.h>

int main(int argc, char *argv[])
{
        QApplication app(argc, argv);
        QPixmap pixmap("./icons/splash.png");
        QSplashScreen *splash = new QSplashScreen(pixmap);

        splash->show();
        
        QMessageBox::information(NULL, QObject::tr("debug"),
                        QObject::tr("before show msg..."));
        Qt::Alignment topRight = Qt::AlignRight | Qt::AlignTop;
        splash->showMessage(QObject::tr("Setting up the main window..."),
                                topRight, Qt::white);
        QMessageBox::information(NULL, QObject::tr("debug"),
                        QObject::tr("after show msg..."));
        sleep(4);
        //app.processEvents();

        MainDialog *mainWin = new MainDialog(&app);
        mainWin->show();
        splash->finish(mainWin);
        delete splash;
        return app.exec();
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

俏︾媚 2022-08-04 05:53:33

splash->showMessage(QObject::tr("Setting up the main window..."),
                                topRight, Qt::white);

改为
splash->showMessage(QObject::tr("Setting up the main window..."),
                                topRight, Qt::black);
试试吧!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文