-
VC中调用MATLAB示例代码
VC中调用MATLAB示例代码-VC Calling MATLAB sample code
- 2023-03-23 23:05:03下载
- 积分:1
-
这是西门子s7200的示例源代码,这是学习PLC编程的好示例
这是西门子s7200的示例源代码,这是学习PLC编程的好示例-Siemens s7200 This is an example of source code, this study are examples of good PLC programming
- 2022-06-13 17:07:46下载
- 积分:1
-
汉诺塔经典DOS版TC源码
汉诺塔经典DOS版TC源码-HANOR classic DOS version TC-source
- 2022-12-07 12:15:03下载
- 积分:1
-
Visual C# 使用键盘控制窗体的移动
Visual C#使用键盘控制窗体的移动,创建窗体对象,设置窗体接收按键事件,定义一个标识窗体的变量,判断按键类型,判断后关闭本窗体。
private void Form1_Load(object sender, EventArgs e)
{
Frm_Main form1 = new Frm_Main();//创建窗体对象
form1.KeyPreview = true;//设置窗体接收按键事件
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
Point point = this.Location;//定义一个标识窗体的变量
switch (e.KeyData)//判断按键类型
{
case Keys.Up://当按键为上方向键时
point.Y -= 2;
break;
case Keys.Down://当按键为下方向键时
point.Y += 2;
break;
case Keys.Right://当按键为右方向键时
point.X += 2;
break;
case Keys.Left://当按键为左方向键时
point.X -= 2;
break;
case Keys.Escape://当按键为Esc键时
this.Close();//关闭本窗体
break;
default: break;
}
this.Location = point;
}
- 2022-03-13 23:48:13下载
- 积分:1
-
一个简单的信息添加
一个简单的信息添加-a simple message added
- 2022-03-22 08:08:11下载
- 积分:1
-
Pasc+Java 这是一个国外的随机自动机*(RAM)一个学习用的程序,古老静电...
Pasc+Java 这是一个国外的随机自动机*(RAM)一个学习用的程序,古老静电-Pasc Java This is a random foreign* Automatic Machine (RAM) used in a learning process, the ancient electrostatic
- 2022-11-29 20:55:08下载
- 积分:1
-
通用WAP网站生成系统(PowerDiamond) v.1
通用WAP网站生成系统(PowerDiamond) v.1 -GM WAP site generation system (PowerDiamond) v. 1
- 2022-08-18 01:54:52下载
- 积分:1
-
数学公式。如何几十、科学计算、机器应用
数学计算公式.多大数十种,科学计算,机器应用-mathematical formula. How dozens, scientific computing, machine application
- 2022-03-17 19:50:47下载
- 积分:1
-
I designed a small player, is vc development, I hope you like them
本人设计了一个小的播放器,是以vc++开发的,希望大家喜欢-I designed a small player, is vc development, I hope you like them
- 2022-01-24 15:40:40下载
- 积分:1
-
手机益智游戏
手机益智游戏-贴方块,索爱S700版本(屏幕240*320),J2ME开发,160关,好玩-mobile puzzle games- posted cubes, Sony Ericsson S700 version (240* 320 screen), J2ME development, 160 customs and fun
- 2022-03-25 22:36:37下载
- 积分:1