-
simplycsp1_24-(1)
How to make ticketing application
- 2013-11-21 12:57:51下载
- 积分: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
-
79419087gameD
simple network game(simple network game matlab code)
- 2019-05-21 21:51:55下载
- 积分:1
-
C#枚举出Windows服务的方法
C#枚举出Windows服务的方法,也就是获取正在生效的Windows系统服务名称,列出这些服务,并且可指定系统服务类型,功能得到了进一步扩展。
- 2022-02-13 06:05:32下载
- 积分:1
-
zf_mmse
关于mimo的破零波束成形和最小均方差的波束成形(Beamforming of MIMO with zero beamforming and least mean square deviation)
- 2018-05-11 10:42:59下载
- 积分:1
-
[MATLAB语言常用算法程序集]
[MATLAB语言常用算法程序集],,涉及到多种算法。([MATLAB language commonly used algorithm assembly], involving a variety of algorithms.)
- 2018-07-09 11:19:14下载
- 积分:1
-
求职笔试大全
说明: 国内外知名企业的求职笔试大全,包括微软,IBM,华为,中兴等在内,部分还有参考答案,相信对想在IT界大展宏图的你会有很大的帮助的!哈哈!(famous enterprises at home and abroad for job-seekers written Daquan, including Microsoft, IBM, Huawei, ZTE, there are some reference to the answer, I believe in the IT sector to show the ambitious you will be a big help! Haha!)
- 2005-10-25 08:46:39下载
- 积分:1
-
ARIMA风速预测
说明: 用于风电场区域的风速多步预测问题。模型基于ARIMA,通过数据预处理、进行建模,并使用我国山东省两个风电场的历史风速数据进行测试和分析。结果表明,模型的统计误差小。(Multi-step wind speed prediction in wind farm area. The model is based on ARIMA, through data preprocessing, modeling, and using historical wind speed data of two wind farms in Shandong Province of China to test and analyze. The results show that the statistical error of the model is small.)
- 2021-02-18 16:59:45下载
- 积分:1
-
CryptoAPI2
说明: cryptoapi componente delphi
- 2019-01-25 00:54:32下载
- 积分:1
-
radar_matlab-master
说明: 雷达目标相参积累 脉冲压缩 LFM调制 MATLAB编程环境(radar target detection coherent integration)
- 2021-04-15 10:27:07下载
- 积分:1