1 Star 0 Fork 0

郭瑞/点子记录器+时间流水器

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 486 Bytes
一键复制 编辑 原始数据 按行查看 历史
郭瑞 提交于 2021-06-21 16:20 +08:00 . ui完成版本
#include "./src/ui/mainwindow.h"
#include "./src/ui/CPlanMainWindow.h"
#include <QApplication>
#include <QSplashScreen>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QPixmap pixmap("./res/start_logo.png");
QSplashScreen splash(pixmap);
splash.show();
a.processEvents(); //让程序在显示启动画面的同时可以响应其他鼠标事件
CPlanMainWindow w;
w.show();
splash.finish(&w);// w启动后关闭
return a.exec();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/gtxiaoruirui/IdeaCollectionAndTimeWater.git
git@gitee.com:gtxiaoruirui/IdeaCollectionAndTimeWater.git
gtxiaoruirui
IdeaCollectionAndTimeWater
点子记录器+时间流水器
dev_gun

搜索帮助