-
易语言高精度等待模块源码
高精度等待,精确到微秒,几乎不占用内存,而且不会窗口假死。
- 2022-01-24 18:37:33下载
- 积分:1
-
线程的冬冬,用来调试线程的哦,大家试试看,
线程的冬冬,用来调试线程的哦,大家试试看,-threads of the boys, used to debug multithreaded Oh, we give it a try, huh-huh
- 2023-01-02 15:00:04下载
- 积分:1
-
EVC to do the routines, middle button pop
EVC做的例程,中间按钮弹出式菜单,可切换当前任务。类似Windows中的任务管理器。-EVC to do the routines, middle button pop-up menu to switch the current mission. Similar to Windows Task Manager.
- 2022-06-12 13:28:34下载
- 积分:1
-
一个使用delphi做的winsock 的别人的东西我转发一下
一个使用delphi做的winsock 的别人的东西我转发一下-a use of the protocols of doing things others forward what I
- 2022-01-26 02:38:11下载
- 积分:1
-
This is a game, the spacecraft hit the stars, I have done, not very good, but al...
这是个游戏,飞船打星星,我自己做得,不太好,还请大家多多指点哈。谢谢了。-This is a game, the spacecraft hit the stars, I have done, not very good, but also please a lot of pointing and Kazakhstan. Thank you.
- 2023-02-26 20:45:03下载
- 积分:1
-
A group communication toolkit that provides a high performance messaging service...
A group communication toolkit that provides a high performance messaging service that is resilient to faults across local and wide area networks.
- 2022-02-13 00:06:13下载
- 积分:1
-
talks source 06
孙鑫vc++讲座源码06-09-talks source 06-09
- 2023-07-28 04:00:03下载
- 积分: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
-
帮助了解磁盘的物理组织,以及如何通过用户态的程序直接读写磁盘上的信息...
帮助了解磁盘的物理组织,以及如何通过用户态的程序直接读写磁盘上的信息-Help understand the physical disk, as well as how the state through the user directly to read and write disk information
- 2022-08-14 21:31:03下载
- 积分:1
-
Winform自制启动画面
一般软件在启动的时候都会有一个启动画面,这个启动画面是为了系统启动时进行一些验证或者加载资源,
这样能达到一种效果:应用程序不会出现”假死“现象。如果直接启动应用程序,进入界面的时候再去加载应用程序
所需要的一些资源,这个时候界面就会出现卡死现象。可以稍微改动,就可以实现自己的效果了,
- 2022-10-04 23:05:03下载
- 积分:1