登录
首页 » Windows开发 » 软的数字小键盘

软的数字小键盘

于 2022-01-26 发布 文件大小:49.14 kB
0 88
下载积分: 2 下载次数: 1

代码说明:

— — 数字小键盘,可以用于触摸屏应用程序,也就是一个例子如何使用本软到 windows(form) 之间的数字键盘

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  •  《混乱竞技场》一个免费多人连线游戏,游戏支持多个连线玩家在同一个场景中杀怪,练级以及PK,游戏中设定了一个4000*4000大小的场景和一共43种拥有不同技能...
     《混乱竞技场》一个免费多人连线游戏,游戏支持多个连线玩家在同一个场景中杀怪,练级以及PK,游戏中设定了一个4000*4000大小的场景和一共43种拥有不同技能的怪物,有大量怪物聚居的地域供玩家练级,也有强大的怪物供玩家组队挑战,如高地战神、黑龙、巫妖等,怪物分为4种类型,分别是魔法型、战士型、力量射手型、魔法射手型,各有不同的特长,能力基本平衡,玩家可根据爱好选择游戏角色,游戏做过很充足的测试,在平衡性方面做了很多努力,有很强的可玩性,加上华丽的魔法效果,动感的音乐和动作,方便高效的设置和连线功能,是一款值得试玩的游戏。 -"confusion arena," a free people line games, the game supports multiple connections with the players in a scene militia, for itself and PK, the game set a 4000* 4000 and the size of the scenes have a total of 43 different skills monster. a large number of monster populated area for players for itself, but also a strong team player for a monster challenge, such as the upland God of War, Heilonggang. Wu Yao, a monster is divided into four types, namely the magic type, the soldiers type, strength-shooter, shooter-type magic, have different skills, and abilities of balance, players can choose game-loving roles, games done very well in testing, the balance have done a lot of hard work, a strong buzz, plus gorgeous mag
    2022-10-24 03:55:03下载
    积分:1
  • PIC进行AD转换示例
    学习PIC18系列单片机的AD转换步骤,通过采集电压来进行展示。
    2022-01-26 03:36:55下载
    积分:1
  • 这一代码送电子邮件的附件很容易。
    This a COde to Send Emails with attachement very easily. You ca use it as an executable, or in you .Net project. Create you Form, create a Button and Enjoy. System::Void MyForm::SendOrder_Click(System::Object^ sender, System::EventArgs^ e) { List Items String ^Filename Filename = IO::Path::Combine(System::Environment::GetEnvironmentVariable("TEMP"), String::Concat("FCSSystem", IO::Path::GetRandomFileName(), ".txt")) Items.Add(Convert::ToString(DateTime::Now)) for(int ni=0 niControls->Count ni++) { Items.Add(String::Concat(OrderPanel->Controls[ni]->Controls[0]->Name,"Q", ((NumericUpDown^)OrderPanel->Controls[ni]->Controls[1])->Value)) } IO::File::WriteAllLines(Filename, Items.ToArray()) SendFileTo::MAPI mapi mapi.AddRecipientTo("sst@fcssystem.com") mapi.AddAttachment(Filename) mapi.SendMailPopup("FCS System Order", "Please Write Your Data Here")
    2022-01-26 07:38:06下载
    积分:1
  • 汇编语言程序设计 汇编语言程序设计52
    汇编语言程序设计 汇编语言程序设计52-assembly language programming design assem bly language programming design52
    2022-04-12 23:54:25下载
    积分:1
  • 这是个数据库相关的源代码,希望对大家有帮助,连接DAO数据库,希望大家多多支持...
    这是个数据库相关的源代码,希望对大家有帮助,连接DAO数据库,希望大家多多支持-This is a database-related source code, in the hope that we help to connect DAO database, hope that we can support
    2023-08-17 18:25:04下载
    积分:1
  • xpressusb设计工具包
    XpressUSB Design Toolkit
    2022-05-29 13:26:57下载
    积分:1
  • 此程序是一个迷宫的小游戏,只要用键盘的方位键就可以控制。...
    此程序是一个迷宫的小游戏,只要用键盘的方位键就可以控制。-This procedure is a little game of a maze, it can be controlled with the position key of the keyboard.
    2022-02-12 10:29:25下载
    积分:1
  • 一个线程池的一个类,基本使用如下:
    一个线程驰的类, 下面的是基本的使用方法 struct TSession { SOCKET socket int id } class myIocp:public CIOCP { public: void OnRead(void * p, char * buf, int len) void OnAccept(SOCKET socket) void OnClose(void * p) } void myIocp::OnAccept(SOCKET socket) { TSession *s = new TSession s->socket = socket //这里可以对连接的session进行自己的操作,例如给id找一个唯一的值 SetIoCompletionPort(socket, s) // 使连接socket与一个自定义结构体关联 } void myIocp::OnRead(void * p, char * buf, int len) { TSession *s = (TSession *)p send(s->socket, buf, len, 0) // 这里只是简单的把收到的消息返回给客户端 ... } void myIocp::OnClose(void * p) { delete p } myIoncp iocp main() { ... iocp.listen(4311) // 开始监听网络端口,等待客户端连接 ... }-A class for thread pool,basic usage below: struct TSession { SOCKET socket int id } class myIocp:public CIOCP { public: void OnRead(void* p, char* buf, int len) void OnAccept(SOCKET socket) void OnClose(void* p) } void myIocp::OnAccept(SOCKET socket) { TSession*s = new TSession s->socket = socket //here you can do something about connecti
    2022-07-17 05:14:52下载
    积分:1
  • 设计一个类Sample,它有两个私有成员A[]和n(A中元素个数),将对A[]中数据进行各种排序的函数放入到一个友元类process中。...
    设计一个类Sample,它有两个私有成员A[]和n(A中元素个数),将对A[]中数据进行各种排序的函数放入到一个友元类process中。 -Sample Design of a kind, it has two private members [] A and n (A number of elements), A. [] will be the data for various sort of function Add Friends yuan to a process which category.
    2022-01-25 16:09:38下载
    积分:1
  • 水果商店
    一个水果商店,可以运行,java servlet,html等语言,可以实现各种功能,譬如浏览水果,购买水果,加入购物车,从购物车删除水果,简单的水果购物系统
    2022-01-25 22:38:53下载
    积分:1
  • 696518资源总数
  • 104384会员总数
  • 26今日下载