资源简介
QT开发的小弹球游戏,可以计分和计时,比较简单和基础
代码片段和文件信息
#include “downwidget.h“
DownWidget::DownWidget(QWidget *parent) :
QWidget(parent)
{
int delay = 50;
//按钮信息初始化
Button = new QPushButton(“加速“ this);
stop = new QPushButton(“停止“this);
connect(Button SIGNAL(clicked(bool)) this SLOT(Slot()));
connect(stop SIGNAL(clicked(bool)) this SLOT(Slot1()));
stop->setGeometry(0 30 93 29);
//挡板信息初始化
bat = new QLabel(this);
bat->setstyleSheet(“background-color:gray; border-radius:5px“);
bat->setGeometry(40 40 100 50);
//小球信息初始化
ball = new QLabel(this);
ball->resize(50 50);
ball->setstyleSheet(“background-color:black; border-radius:25px“);
//变量信息初始化
x = y = 0;
dx = dy = 1;
db = 20;
resize(780 500);
//执行计时器
connect(&
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-12-28 11:48 unti
文件 99298 2018-12-27 09:54 unti
文件 38 2018-12-27 09:48 unti
文件 103 2018-12-27 15:30 unti
文件 2333 2018-12-27 10:45 unti
文件 887 2017-10-29 20:53 unti
文件 2727 2018-12-25 18:34 unti
文件 1082 2018-12-25 18:34 unti
文件 2727 2018-12-25 18:34 unti
文件 231 2018-12-27 17:01 unti
文件 711 2018-12-27 17:01 unti
文件 576 2017-10-29 19:41 unti
文件 730 2018-12-25 10:44 unti
文件 477 2018-12-27 15:30 unti
文件 308 2018-12-27 15:28 unti
文件 23908 2018-12-28 11:48 unti
文件 23896 2017-10-29 17:40 unti
文件 758 2018-12-25 10:44 unti
文件 490 2017-10-29 19:17 unti
评论
共有 条评论