-
《Python基础教程(第3版).pdf
python基础课程;python是一种计算机编程语言。作为一种面向对象的动态类型化语言,它最初被设计用来编写自动脚本(shell)。随着版本的更新和新语言功能的增加,它越来越多地被用于独立的大型项目的开发中。(Python Basic Course; Python is a computer programming language. As an object-oriented dynamic typed language, it was originally designed to write automated scripts (shells). With the updating of versions and the addition of new language functions, it is increasingly used in the development of independent, large-scale projects.)
- 2020-06-18 02:20:01下载
- 积分:1
-
UCGUI 汉字显示(外部FLASH)
说明: stm32f103 ucgui 汉字显示 字库在外部flash芯片(ucgui stm32f103 font at spi flash)
- 2020-01-26 21:17:36下载
- 积分: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
-
35-instances-of-SCM
单片机35个实例 包含任务要求,电路原理图,源程序等(35 instances of SCM)
- 2011-05-18 15:30:31下载
- 积分:1
-
进入下一程序的赛车游戏,可以提供很大的帮助,学习C游戏编程…
turboC下一个赛车的入门游戏,可以给学习C游戏编程很大帮助-The next entry turboC racing game, can give great help to learn C Game Programming
- 2022-03-17 18:19:34下载
- 积分:1
-
这个继续是sap学习资料,提供给大家
这个继续是sap学习资料,提供给大家-This continues to sap learning materials provided to the U.S.
- 2022-04-07 21:43:13下载
- 积分:1
-
MLX90621-Datasheet-Melexis
说明: mlx90621的英文资料,包括硬件和软件说明(Mlx90621 in English, including hardware and software descriptions)
- 2020-06-09 16:41:03下载
- 积分:1
-
LabVIEW programming skills demonstration, prepared by LabVIEW applications windo...
labview程序编程技巧演示,用labview编写windows应用计算器小程序-LabVIEW programming skills demonstration, prepared by LabVIEW applications windows calculator applet
- 2023-06-21 11:50:03下载
- 积分:1
-
Transistores
说明: Info about transistors
- 2020-06-24 09:00:02下载
- 积分:1
-
AFWA-dim30
隐含层节点30,烟花优化算法,包含特征选取、数理统计、平均值等(evaluate.m;evaluatearray.m;sparksnumfireworkamplitude-cal.m)
- 2020-06-17 14:00:01下载
- 积分:1