-
mfc achieved with a simple calculator
用mfc实现的一个简单计算器-mfc achieved with a simple calculator
- 2022-03-21 13:17:46下载
- 积分:1
-
用delphi写的自动关机小程序,供初学者参考
用delphi写的自动关机小程序,供初学者参考-used to write small automatic shutdown procedures, information for beginners
- 2022-04-27 01:40:42下载
- 积分:1
-
loading dll from memory
loading dll from memory
- 2023-08-20 08:05:04下载
- 积分:1
-
WWPF记忆卡游戏源码
WPF记忆卡游戏源码功能介绍:游戏分3种模式 单人模式,2人模式还有人机模式,点击卡片图片会显示一下,然后隐藏,根据记忆找到相同的卡片,卡片就会消失。注意:开发环境为Visual Studio 2010
- 2022-03-25 08:38:05下载
- 积分:1
-
Windows凭据查看器
资源描述此份代码可以枚举出从xp到win8的凭据,凭据是Windows保存部分帐号密码的地方,很有参考价值。
- 2023-03-15 14:50:04下载
- 积分:1
-
This is a huffman code program which is important
for data structure.The progra...
这是一个哈夫曼编码的程序,使数据结构中一个非常重要的程序,程序完整,希望对大家有帮助。-This is a huffman code program which is important
for data structure.The program is integrity.I hope
that the program is helpful.
- 2022-11-24 23:50:03下载
- 积分:1
-
200308141526117224仿MSN(网易泡泡)界面,从事及时通信开发人员
200308141526117224仿MSN(网易泡泡)界面,从事及时通信开发人员-200308141526117224, imitating the interface of MSN, fitting with betimes communicatting developer
- 2022-03-01 06:20:16下载
- 积分:1
-
这是一个用来求循环节的程序,最后输出循环节
这是一个用来求循环节的程序,最后输出循环节-This is a section used for the process cycle, the last section of the output cycle
- 2022-01-26 02:06:44下载
- 积分:1
-
万年历中星期的算法 包括闰年,从0000
万年历中星期的算法 包括闰年,从0000-9999年 原代码,未编译-hefty almanac weeks algorithm which include a leap year, from 0000-9999, the original code did not compile
- 2022-11-17 19:05: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