-
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
-
zip-0.0.2.tar
python3 zip module for zip files
- 2020-06-22 00:40:02下载
- 积分:1
-
78344336IIR(HP)
高通滤波算法,可以很好的解决需要高通滤波的算法中(High Pass Filtering Algorithms)
- 2020-06-21 22:40:01下载
- 积分:1
-
NARX-vs-MLP-master
说明: MPL和NARX神经网络的实现与对比,有详细的代码和结果图片(MPL and NARX neural network implementation and comparison, there are detailed code and result pictures)
- 2020-06-23 10:00:02下载
- 积分:1
-
Subtitles to filmes
Subtitles to filmes-Subtitles to filmes
- 2023-06-25 03:10:03下载
- 积分:1
-
带音乐功能的跑表VerilogHDL描述
带音乐功能的跑表VerilogHDL描述-music with the stopwatch Verilog HDL description
- 2022-04-30 17:14:12下载
- 积分:1
-
Dogs looking for treasure on their own to a map, there are treasures, based on s...
狗自己找宝藏去地图,有宝藏,根据狗的某种走法,如果能在宝藏里找到,输出的是走几步,如果不工作那输出是不可能的
- 2022-11-01 18:20:04下载
- 积分:1
-
asp个人网站实例,包括创建过程等,在tomcat下或是小型的asp工具下就可以运行...
asp个人网站实例,包括创建过程等,在tomcat下或是小型的asp工具下就可以运行-asp examples of personal websites, including the creation process, etc., under tomcat or small, can be run under asp tool
- 2022-03-07 05:49:30下载
- 积分:1
-
6轴运动学正反解
通过使用VS2010对六轴运动学正反解析,内容包括正运动学解析,反解等。(Through the use of VS2010 on the six-axis kinematics positive and negative analysis, including positive kinematics analysis, anti-solution and so on.)
- 2020-11-12 17:39:44下载
- 积分:1
-
Form1.Designer
说明: Suggestions for Writing High Quality Code to Improve C# Programs [Avoid Invalid Code in finaly, Avoid Nested Exceptions
- 2020-06-24 01:20:02下载
- 积分:1