-
C游戏编程从入门到精通源码,猜数字游戏源码
C游戏编程从入门到精通源码,猜数字游戏源码-C game programming source code from the entry to the master
- 2022-08-10 10:57:09下载
- 积分:1
-
一个使用ani资源的例子
一个使用ani资源的例子- Uses the ani resources the example
- 2023-01-11 02:30:04下载
- 积分:1
-
支持便携式网络图形格式的参考库
支持便携式网络图形格式的参考库-support the Portable Network Graphics format reference library
- 2022-07-10 14:12:16下载
- 积分:1
-
好 有点小bug帮我
好 有点小bug帮我-good a little help me find the bug
- 2022-08-12 22:54:46下载
- 积分:1
-
读取excel文件
使用python打表excel,生成二进制文件,使用c++读取二进制。方便开发流程,提高效率,已在项目中应用。使用时只需要继承即可。
- 2022-03-22 11:42:14下载
- 积分:1
-
罗小平<<delphi精要>>一书源码,个人珍藏,解决开发中遇到的难题...
罗小平一书源码,个人珍藏,解决开发中遇到的难题-Xiao-Ping Luo < > Book-source, personal collection, to resolve problems encountered during the development of
- 2023-07-12 00:45:03下载
- 积分:1
-
at runtime delete themselves
在运行时删除自己-at runtime delete themselves
- 2022-05-25 04:45:46下载
- 积分:1
-
一个完整的工程应用系统,很全面的,值得学习
一个完整的工程应用系统,很全面的,值得学习-A complete system engineering applications, it is comprehensive, it is worth learning
- 2022-03-18 11:21:50下载
- 积分:1
-
QT编写的C++贪吃蛇小游戏
游戏通过按键控制
部分代码:
#include "gamewidget.h"
#define ROW 13
#define COL 16
#define UP 0
#define DOWN 1
#define LEFT 2
#define RIGHT 3
GameWidget::GameWidget(QWidget *parent)
:QWidget(parent)
{
this->setAutoFillBackground(true);//覆盖
this->resize(480,270);
this->setWindowIcon(QIcon("img/icon.jpg"));
this->setWindowTitle("贪吃蛇");
QPalette palette;
palette.setBrush(QPalette::Background,QBrush((QPixmap)"img/bjt.png"));
this->setPalette(palette);
//按扭区
leftbtn=new QPushButton(this);
leftbtn->setIcon((QIcon)"img/zuo.png");
leftbtn->setIconSize(QSize(40,40));
leftbtn->setGeometry(QRect(340,180,40,40));
leftbtn->setFlat(true);
rightbtn=new QPushButton(this);
rightbtn->setIcon((QIcon)"img/you.png");
rightbtn->setIconSize(QSize(40,40));
rightbtn->setGeometry(QRect(430,180,40,40));
rightbtn->setFlat(true
- 2022-03-21 19:09:00下载
- 积分:1
-
GetAdaptersInfo:获取网卡的相关信息
GetAdaptersInfo:获取网卡的相关信息-GetAdaptersInfo:Get information about mac
- 2022-03-17 07:10:52下载
- 积分:1