-
一本非常好的关于WCF的书,大家可以看看,比较短,适合初学者...
一本非常好的关于WCF的书,大家可以看看,比较短,适合初学者-A very good book on WCF, we can see, rather short, suitable for beginners
- 2023-08-10 13:00:04下载
- 积分:1
-
OnVif 协议客户端测试程序
基于OnVif协议测试工具的VC控制台应用程序,类似于OnVif设备测试工具,支持设备检测、获取设备信息、访问预定位、设置预定位、删除预制位、获取图片消息、设置图片亮度、对比度、饱和度。
- 2022-01-22 15:27:52下载
- 积分:1
-
c++ customize dynamic array source to support the sort. to the dynamic array tem...
c++自定义动态数组源代码,支持排序。到动态数组模板类,以及模板函数的排序。
- 2022-04-01 04:21:56下载
- 积分:1
-
based on the Microsoft platform, the use of ACCESS database and provide automati...
基于微软平台,使用ACCESS数据库,提供自动分页功能,ASP编程-based on the Microsoft platform, the use of ACCESS database and provide automatic paging function, ASP Programming
- 2022-01-22 01:10:04下载
- 积分:1
-
字典序问题:在数据加密和数据压缩中常需要对特殊的字符串进行编码。给定的字母表 A 由 26 个小
写英文字母组成 A={a,b,…,z}。该字母表产生的升序...
字典序问题:在数据加密和数据压缩中常需要对特殊的字符串进行编码。给定的字母表 A 由 26 个小
写英文字母组成 A={a,b,…,z}。该字母表产生的升序字符串是指字符串中字母按照从左到
右出现的次序与字母在字母表中出现的次序相同,且每个字符最多出现 1 次。例如,a,b,ab,
bc,xyz 等字符串都是升序字符串。
-search the postion for the given ascend sor string.
- 2022-11-11 07:15:03下载
- 积分:1
-
测试各种大小使用
测试各种大小使用
测试各种大小使用
测试各种大小使用-Testing a variety of sizes to use to test the use of various sizes
- 2022-01-31 09:27:57下载
- 积分:1
-
旋转裁剪图片的头文件,实现图片任意角度的旋转裁剪功能
旋转裁剪图片的头文件,实现图片任意角度的旋转裁剪功能-Crop rotation picture header file, to achieve picture at any angle of rotation cropping feature
- 2023-01-23 16:30:04下载
- 积分:1
-
这是从外国站点下载的屏幕保护程序,开发环境VC,并且多视图进行的加载...
这是从外国站点下载的屏幕保护程序,开发环境VC,并且多视图进行的加载-This is from a foreign site to download the screen saver, development environment, VC, and carried out multi-view load
- 2022-03-17 18:11:51下载
- 积分:1
-
核心源程序!!!
WinXP core sources-WinXP core sources!!!
- 2022-01-26 03:18:02下载
- 积分: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