2 Star 58 Fork 0

fg/Game-superMary-superMario

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
gamehelp.cpp 816 Bytes
一键复制 编辑 原始数据 按行查看 历史
fg 提交于 2021-04-06 22:58 . project initialized
#include "gamehelp.h"
#include"mypushbutton.h"
#include<QTimer>
GameHelp::GameHelp(QWidget *parent) : QWidget(parent) {
setWindowTitle("游戏帮助");
resize(800, 550);
MyPushButton *back_btn = new MyPushButton(":/photo/back.png");//设置帮助按钮
back_btn->setParent(this);
back_btn->setFixedSize(180, 80);
back_btn->setIconSize(QSize(180, 80));
back_btn->move(500, this->height() * 0.8);
connect(back_btn, &QPushButton::clicked, [=]() {
back_btn->zoom1();
back_btn->zoom2();
QTimer::singleShot(500, this, [=]() {
this->close();
emit
this->back();
});
});
}
void GameHelp::paintEvent(QPaintEvent *) {
QPainter painter(this);
painter.drawPixmap(0, 0, 800, 550, QPixmap(":/photo/gamehelp.png"));
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/wenyanghe/supermary.git
git@gitee.com:wenyanghe/supermary.git
wenyanghe
supermary
Game-superMary-superMario
main

搜索帮助