赞
踩
事件 | 简介 | 举例 |
---|---|---|
<Button-detail> | 鼠标按键单击事件 ,detail表示鼠标的哪个键 | <Button-1>:单击鼠标左键,<Button-2>:单击中键,<Button-3>:单击右键,<Button-1>:单击向上滚动的滚轮,<Button-1>:单击向下滚动的滚轮 |
<modifier-Motion> | 鼠标在组件上移动事件,modifier可选,表示要按住鼠标的哪个键 | <Motion>:鼠标移动,<B1-Motion>:按住鼠标左键移动,<B2-Motion>:按住鼠标中键移动,<B3-Motion>:按右键移动 |
<Double-detail> | 双击鼠标的某个键,detail表示鼠标的哪个键(同<Button-detail>) | <Double-1>:单击左键,<Double-2>:…,<Double-3>:…,<Double-4>:…,<Double-5>:… |
<ButtonRelease-detail> | 鼠标按键释放的事件,detail表示鼠标的哪个键 | <ButtonRelease-1>:鼠标左键释放,<ButtonRelease-2>:中键释放,<ButtonRelease-3>:右键释放 |
<Enter> | 鼠标进入组件的事件 | |
<Leave> | 鼠标移出组件的事件 |
事件 | 简介 | 举例 |
---|---|---|
<Key>或<KeyPress> | 键盘上任意键的单击事件,可以使用event对象的属性来获取按键的名称 | |
<KeyRelease> | 释放键盘上任意键的事件 | |
特殊键位 | 按下特殊键的事件 | Tab、Shift、Backspace、Home、Up、Left、Down、Right、… |
指定键位 | 指定键位被按下的事件 | a表示a键被按下,b表示b键被按下,… |
<Shift-Up> | 按下shift键和up键 | 与之类似的有<Shift-Down>、<Shift-Left>、<Shift-Right> |
<Any> | 任意键被按下的事件 |
属性 | 含义 |
---|---|
widget | 产生该事件的组件 |
x,y | 当前鼠标位置相对于窗口左上角的坐标,像素为单位 |
x_root,y_root | 当前鼠标位置相对于屏幕左上角的坐标,像素为单位 |
char | 键盘事件对应的字符 |
type | 事件类型 |
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。