-
Microsoft WinCE 6.0 BSP FINAL release source code for use with the i.MX27ADS TO2...
Microsoft WinCE 6.0 BSP FINAL release source code for use with the i.MX27ADS TO2 WCE600_FINAL_MX27_SOURCE.zip
- 2022-03-23 11:26:23下载
- 积分:1
-
china chess ,the game of go,
象棋,围棋,围捕棋(网络版).zip 象棋,围 捕棋(网络版).zip-china chess ,the game of go,
- 2022-04-23 07:49:51下载
- 积分:1
-
实现象ToolTips那样的上下文帮助
实现象ToolTips那样的上下文帮助-The Example of implementing the help of tooltip style
- 2022-11-14 19:50:04下载
- 积分:1
-
bmp of the tools to achieve
bmp工具条的实现-bmp of the tools to achieve
- 2022-07-21 16:04:16下载
- 积分:1
-
binary sort tree and balanced binary tree program.
二叉排序树和平衡二叉树计算程序。-binary sort tree and balanced binary tree program.
- 2022-03-03 14:11:53下载
- 积分:1
-
自己写的柱控制代码C++ MFC不成就写碗等。
Write your own column control code c + + mfc no mean achievement to write bowl of lightly-Write your own column control code c++ mfc no mean achievement to write bowl of lightly
- 2023-08-20 22:15:03下载
- 积分:1
-
基于mapX控件,用VB开发的GIS交通网络系统
基于mapX控件,用VB开发的GIS交通网络系统-MapX-based controls, using VB to develop the transport network of the GIS system
- 2022-04-29 10:02:23下载
- 积分:1
-
使用 C#.net 发送邮件
第一件事第一,我们需要对邮件的命名空间的引用我们的 cs 文件中之前我们可以开始编码。我们将包括。
?
1
using System.Net.Mail;
此命名空间将提供撰写和发送邮件所需的必要的类。撰写邮件,我们要创建一个像 MaiMessage 的实例
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报 打分 发表评论 暂无评论 0 粉丝 0 发布 0 获赞 关注 查看主页 c#CNET发送邮件使用 相关源码推荐 宿舍管理系统 0 0 暂无评分混任务nn 0 0 暂无评分c#仿杀毒软件界面代码 0 0 暂无评分vr虚拟现实 0 0 暂无评分二手车管理系统 0 0 暂无评分 介绍信息预览(0条)评论打分
- 2022-01-31 07:19:22下载
- 积分:1
-
c语言坦克大战源码
坦克大战C语言代码,详细场景地图,寻找童年感觉
- 2023-04-18 14: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