Qt 啟動畫面 參考網址 https://wiki.qt.io/Custom_splashscreen_with_text 執行畫面 流程 準備一張 .png 圖檔匯入專案中 1. 專案右鍵 2. Add New 3. Add Qt Resource File 4. name: png resource 5. 確認新增成功 6. 新增資料夾 Add Prefix1 7. 前置字串名稱可以修改 8. 新增 source 資料夾,把圖片放入之後匯入檔案 匯入檔案需要把圖片先放入,否則路徑會錯誤 重點 QSplashScreen 要先確認有支援哪些 API QElapseedTimer 主要靠 Timer 停留3秒,否則畫面會一閃而過看不到 QSplashScreen,此處可以做一些耗時的動作. 圖檔位置要確認,否則會錯誤 程式碼 main.cpp <code class = "prettyprint" > #include "mainwindow.h" #include <QApplication> #include <QElapsedTimer> #include <QRect> #include <QSplashScreen> #include <QTimer> int main(int argc, char *argv[]) { QApplication app(argc, argv); customSplashScreen* splash = new customSplashScreen(QPixmap(":/png/source/start_up.png")); splash->setMessageRect(QRect(135, 484, 415, 28)/*, Qt::AlignHCenter | Qt::AlignVCenter*/); QFont splashFont; splashFont.setFamily("Arial"); splashFont.setBold(true); splashFont.setPixelSize...