-
pretty VB version of the interface, which can be expanded and needed code is ver...
漂亮的VB版本的界面,界面可以进行扩展并且所需要的代码又非常的少。是一个优秀的原码你可以下载学习之用。-pretty VB version of the interface, which can be expanded and needed code is very limited. Is an outstanding original code you can download learning.
- 2023-04-12 06:30:04下载
- 积分: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
-
Delphi学生宿舍管理系统附Access数据库
Delphi学生宿舍管理系统附Access数据库,各个功能模块:系统管理、学生管理、学期注册、出入登记、查询管理、寝室管理、信息录入、信息查询、出货登记等,是一个典型的Delphi/ACCESS数据库编程实例,Delphi学习者可从中学习一些简单常用的数据库操作技巧,比如添加、删除、修改查询数据等。
- 2022-02-13 11:43:45下载
- 积分:1
-
这是JAVA的教程,非常详细的讲稿,可以参考
这是JAVA的教程,非常详细的讲稿,可以参考-This is the Java Directory, a very detailed script, they can refer to
- 2022-01-21 19:48:30下载
- 积分:1
-
C# BubbleUp冒泡算法示例
C# BubbleUp冒泡算法示例,定义数组,用循环控制生成冒泡结果,如演示截图所示,最基础的冒泡排序算法例子,是学习排序算法的基矗
- 2022-07-05 06:17:42下载
- 积分:1
-
Using central difference method to calculate the structural dynamic response
利用中心差分法计算无阻尼结构动力响应,并作图-Using central difference method to calculate the structural dynamic response
- 2022-06-19 04:21:01下载
- 积分:1
-
can set a party to six games while, each side can be created for the computer, n...
可以设定1~6方同时游戏,每一方都可以设定为电脑、网络或本地。左键下子,右键确定。游戏界面美观,很不错。开发工具:VC++6.0 和 MFC -can set a party to six games while, each side can be created for the computer, network or local. Left Now, the right to determine. Games beautiful interface, very good. Development tools : VC 6.0 and MFC
- 2022-02-24 20:07:49下载
- 积分:1
-
大学计算机基础课程 电子技术实验 用Multisim2001编写 实验内容 应用运算放大器放大81倍的电路设计图...
大学计算机基础课程 电子技术实验 用Multisim2001编写 实验内容 应用运算放大器放大81倍的电路设计图-University computer based courses using electronic technology experiment prepared Multisim2001 experimental content applications Operational amplifier circuit 81 times the design
- 2022-03-31 06:31:17下载
- 积分:1
-
Image Registration of the literature, including genetic algorithm, mutual inform...
图像配准的文献,包括遗传算法,互信息法,免疫算法,中英文经典文献-Image Registration of the literature, including genetic algorithm, mutual information method, the immune algorithm, in both English and Chinese classical literature
- 2023-08-03 22:20:05下载
- 积分:1
-
超小的图片压缩源码。用VC开发。欢迎下载试用。没有版权。
超小的图片压缩源码。用VC开发。欢迎下载试用。没有版权。-Ultra-small source of image compression. With VC development. Welcome to download them for trial use. No copyright.
- 2022-03-13 21:35:49下载
- 积分:1