-
VB6和菜单..一个示例代码
VB6 and Meun .. a sample code-VB6 and Meun a sample code ..
- 2022-11-07 05:20:03下载
- 积分:1
-
skype api application6
skype api application6
- 2022-03-25 03:57:00下载
- 积分:1
-
在三分钟内快速答完三十道题,有clock计时的哦
在三分钟内快速答完三十道题,有clock计时的哦-in three minutes rapid wound 30 title and a clock time of oh
- 2022-01-26 01:54:26下载
- 积分:1
-
公话计费系统源码
公话计费系统源码-Gong source billing system
- 2022-02-02 02:08:09下载
- 积分:1
-
在WINDOWS CE系统上EVC开发的XP按钮的源码
在WINDOWS CE系统上EVC开发的XP按钮的源码 -in Windows CE system EVC development of XP button FOSS
- 2022-01-26 06:31:00下载
- 积分:1
-
一套不错c++的中级培训资料,我平时有空的时候看看,感觉还是不错的...
一套不错c++的中级培训资料,我平时有空的时候看看,感觉还是不错的 -A good c++ Intermediate training materials, when available, I usually look or feel good
- 2022-03-18 02:22:23下载
- 积分:1
-
Color ListCtrl Report List
使用CListCtrl控件的过程中,我们会发现使用及其不方便,特别是在使用“report"显示模式时, 想给指定条目添加背景颜色,CListCtrl控件所提供的设置颜色函数只能使得控件的界面变得好看一些,根本不能满足我们的要求,我们无法把特定的一项或几项添加上不同的颜色以示区别。 幸运的是很多VC的使用者在改造CListCtrl类,使之更加功能强大上做了很多工作,开发出了各种各样的继承类来实现这个功能,Sven Freitag 就是其中的一员。他开发出了CListCtrl的继承类CColorListCtrl来实现给指定的条目加背景色的功能,并无偿的在网上公布给VC的使用者,我在源代码中收集了他的源程序,各位读者可以先阅读学习一下。
- 2022-07-15 05:31:29下载
- 积分:1
-
powerful text search engine, designated directories and file types, we can searc...
强力文本搜索器,指定目录和文件类型, 即可搜索特定文本字串,适合C++源代码 查看和查找 附带程序 -powerful text search engine, designated directories and file types, we can search for specific text strings, for C source code view and search incidental proceedings
- 2022-04-28 17:42:27下载
- 积分:1
-
舵机翻转
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
基于stm32的舵机主程序
- 2022-08-15 19:05:26下载
- 积分: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