-
Windows CE 应用程序设计随书源码,包括用EVC开发的很多完整的编程实例和一些EVB的编程实例...
Windows CE 应用程序设计随书源码,包括用EVC开发的很多完整的编程实例和一些EVB的编程实例-Windows CE application design source books, including the development of many EVC integrity of the programming examples and some programming examples EVB
- 2022-03-20 23:55:11下载
- 积分:1
-
for adding animated gifs in excel
for adding animated gifs in excel
- 2022-05-21 21:00:30下载
- 积分:1
-
Windows程序设计 中英文
Windows程序设计入门教材,希望对需要者有帮助
- 2023-04-16 05:15:04下载
- 积分:1
-
并行和串行发射机
这两个程序通过并行(或串行)端口将数据发送到一个7段显示器。可设置的参数包括:波特率,奇偶校验,延迟等
- 2022-03-18 16:02:09下载
- 积分:1
-
实现风车旋转的功能 颜色随即变换 路线不断变换
实现风车旋转的功能 颜色随即变换 路线不断变换-achieve windmills rotating color function immediately transform the constantly changing line
- 2022-08-03 13:52:30下载
- 积分:1
-
: 傲视江湖V2.2最新修正版(据说是最好的江湖哦!)真的是一个好江湖,我不做介绍,自己下回去看吧!!!...
: 傲视江湖V2.2最新修正版(据说是最好的江湖哦!)真的是一个好江湖,我不做介绍,自己下回去看吧!!! -disdaining JIANG HU V2.2 is updated version, and it is realy good. If you don t believe it ,download and try!!!
- 2022-01-27 22:28:42下载
- 积分:1
-
Windows矢量图转换VC源代码,WMF格式转EMF格式
Windows矢量图转换VC源代码,WMF格式转EMF格式-vector conversion VC Windows source code, WMF format to EMF format
- 2022-01-22 06:47:50下载
- 积分:1
-
本程序可以实现把所画出的图像生成视频,希望对您有所帮助,网站不让上传小于1K的程序,就随便粘贴了其他的东西,使用时删除就行了...
本程序可以实现把所画出的图像生成视频,希望对您有所帮助,网站不让上传小于1K的程序,就随便粘贴了其他的东西,使用时删除就行了-This procedure can be achieved to generate video images drawn by the hope of help to you, the website allow upload process is less than 1K, it casually pasted other things, used to delete on the list
- 2023-03-02 12:55:03下载
- 积分:1
-
STM32F767的bootloader程序
STM32F767的bootloader程序,MCU启动时运行,在此段程序运行完成后跳转到应用程序,此段程序只有在上电时运行一次。
- 2023-04-13 18:15:11下载
- 积分: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