-
windows下实现串口通信程序,MFC编程,调试可用
windows下实现串口通信程序,MFC编程,调试可用-windows achieve serial communication program, MFC programming, debugging can be used
- 2022-01-25 23:19:13下载
- 积分:1
-
征途服务端源码,网络下载,可用于学习研究,不可用于商业用途...
征途服务端源码,网络下载,可用于学习研究,不可用于商业用途-ztdm
- 2022-06-14 14:30:09下载
- 积分:1
-
一个优秀的界面解决方按
一个优秀的界面解决方按-an excellent interface solution by side
- 2022-01-26 03:26:56下载
- 积分:1
-
keyexpansion for 128bits
keyexpansion for 128bits
- 2022-06-20 17:30:15下载
- 积分:1
-
功能简介:,帮助您轻松抓取各种资源文件中的图标,并可保存为图标和位图等格式或将其复制到系统剪切板中,以便在其它程序中粘贴时使用。...
功能简介:,帮助您轻松抓取各种资源文件中的图标,并可保存为图标和位图等格式或将其复制到系统剪切板中,以便在其它程序中粘贴时使用。-functional description : to help you easily capture resources in the document icon and preservation of the icon and bitmap formats or copies of the system Shear panel, in order to glue other programs use.
- 2023-05-14 20:15:02下载
- 积分:1
-
本源码是一个完整的图书馆管理系统,功能比较齐全。
本源码是一个完整的图书馆管理系统,功能比较齐全。-This source code is a complete library management system, wide array of functions.
- 2022-03-23 12:14:12下载
- 积分:1
-
C#源代码
非常经典的C#源代码集,对于初学者非常实用,现分享给大家,共同学习
- 2022-07-27 08:45:26下载
- 积分:1
-
连杆机构精确演示 动画 包括计算
连杆机构精确演示 动画 包括计算-Linkage precision in terms of Animation
- 2023-01-28 05:55:04下载
- 积分:1
-
颜色鲜艳的小鸟 Firebird 搜索程序
这是一个在局域网上搜索数据库 Firebird 的程序可以搜索由你定义的 TCP/IP 范围内,任何在局域网上安装了 Firebird 的人
- 2022-08-18 17:39:01下载
- 积分: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