-
监视程序摄像头 监视程序摄像头 监视程序摄像头
监视程序摄像头 监视程序摄像头 监视程序摄像头-Monitoring program to monitor program camera camera camera monitoring program
- 2022-03-26 15:07:13下载
- 积分:1
-
I changed allegttf font driver, it can show support for the Chinese.
我修改的allegttf字体驱动程序,可以使它支持中文显示。-I changed allegttf font driver, it can show support for the Chinese.
- 2023-06-11 02:10:03下载
- 积分:1
-
getnetsettings(获取网络设置,网卡信息)
getnetsettings(获取网络设置,网卡信息) -getnetsettings (access to network configuration, network card information)
- 2022-03-29 12:07:37下载
- 积分:1
-
Mutlithread database ac
Mutlithread database ac
- 2022-06-27 20:53:26下载
- 积分:1
-
贪食蛇 双人对决版游戏源代码
资源描述贪食蛇 双人对决版游戏源代码 为在windows平台使用VC++开发的一个升级版游戏,代码拥有详细的解释收,说明,,,,,,是一款不错的小游戏,,,,,,
- 2022-02-25 12:22:57下载
- 积分:1
-
互联网拨号程序
我已经连接到互联网服务供应商书面拨号拨号。这是一个简单的小程序,拨号调制解调器和跟踪您的在线时间。它还允许用户设置多个拨号号码,为用户提供了一个基本的设置。的源代码是免费的,可以从GPL下发布。这是用Visual C++ ; ;使用MFC,RAS ;API和其他几个API一样的性能计数器和多媒体API
- 2022-05-06 21:51:01下载
- 积分:1
-
获取DLL中的版本信息(主版本号,次版本号等)
获取DLL中的版本信息(主版本号,次版本号等)-DLL to obtain the version information (major version number, sub-version number, etc.)
- 2022-08-23 07:54:03下载
- 积分:1
-
读取ini文件类,十分实用的工具
读取ini文件类,十分实用的工具-read ini file type, a very useful tool
- 2022-01-22 02:44:35下载
- 积分:1
-
Alarm clock applet,To start automatically on the toolbar, you can set the time t...
闹钟小程序,用C2008开发,启动后自动放到工具栏,可以设置闹响时间,可以保存闹响时间。到时自动弹出,并有铃声。 -Alarm clock applet,To start automatically on the toolbar, you can set the time to make sound, you can save time to make ring. To automatically pop-up, and ring tones.
- 2022-05-12 20:56:33下载
- 积分: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