cpubbs论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

LabVIEW+单片机学习套件全套教程资料下载[免费]LabVIEW论坛精华列表贴USB0816数据采集卡《LabVIEW宝典》
LabWindows/CVI论坛精华贴NET0816以太网数据采集卡RC0210远程设备授权系统 关闭关停锁定打开设备 户外分布式数据采集
NET1624低速高精度以太网数据采集卡WIFI0824SD无线WIFI网络数据采集卡脱机运行 SD存储 小尺寸微型 串口采集远程采集 安卓 手持移动采集 纪录仪
查看: 2115|回复: 9

eventData1和eventData2的意义是什么???

[复制链接]
发表于 2008-9-17 20:57:21 | 显示全部楼层 |阅读模式
我是一个新手,
请帮助在CVI中eventData1和eventData2在函数中代表了什么意义!!!
急!!!!!
发表于 2008-9-17 23:41:39 | 显示全部楼层
不同的控件的这二个值好像有不同的意义,您可以设置断点,看不同的控件,它有不同的值,从而可以发现它不是统一的!
发表于 2008-9-17 23:43:51 | 显示全部楼层
Using Callback Functions to Respond to User Interface Events
Callback functions respond to all events generated by the User Interface Library. The C prototypes for the callback functions are in userint.h. You can assign callback functions to panels, menu bars, controls, or the main callback. When the user generates an event on a particular user interface object, the appropriate callback function executes. Idle events and end-task events are passed to the main callback function only. InstallMainCallback installs this main callback function.

LabWindows/CVI passes event information from the GUI to the callback functions. For example, callback functions receive the type of user interface event that occurred, such as EVENT_LEFT_CLICK, and some additional information concerning that event, such as the x- and y-coordinates of the mouse cursor when the click occurred. You are free to design your functions to use this information when responding to events. LabWindows/CVI also passes callback data to the callback function that you define.
发表于 2008-9-17 23:44:04 | 显示全部楼层
这是CVI的帮助文档中提到的!
发表于 2008-9-18 09:46:16 | 显示全部楼层
CVI回调函数原形为:CVICALLBACK FunctionCallBack (int panel, int control, int event,void *callbackData, int eventData1, int eventData2)
其中,
panel指控件所在的面板(注意:Tab、Table等控件例外)的句柄;
control指控件句柄(ID);
event是指控件所具有的事件,各个不同类型的控件具有的事件不完全相同;
callbackData为指针型变量,在程序调用函数时可以传递某些特殊的变量;
eventdata1和eventdata2在具体应用中的表示意义不同:
1、在鼠标事件中(EVENT_LEFT_CLICK、EVENT_RIGHT_CLICK等),eventdata1和eventdata2表示鼠标按下时,相对于面板的x轴和y轴坐标。你可以在鼠标事件中通过这两个参数获取鼠标的位置;
2、在键盘事件中(EVENT_KEYPRESS),eventdata1表示键盘按键值和状态,eventdata2则是指向实际键值的指针;
3、在焦点事件中,eventdata1在获取焦点事件(EVENT_GOT_FOCUS)表示前一个具有焦点的控件ID号;在失去焦点事件(EVENT_LOST_FOCUS)表示下一个获得焦点的控件ID号,eventdata2无意义;
4、Timer控件事件中,eventdata1表示当前时间值的指针,eventdata2表示上次响应此消息到现在的时间间隔。
发表于 2011-3-29 15:41:27 | 显示全部楼层
发表于 2011-3-22 15:52:21 | 显示全部楼层
发表于 2011-3-22 10:45:01 | 显示全部楼层
发表于 2011-3-29 10:40:19 | 显示全部楼层
发表于 2011-3-21 09:28:36 | 显示全部楼层
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|cpubbs论坛. ( 粤ICP备09171248号 )

GMT+8, 2025-4-6 17:51 , Processed in 0.612463 second(s), 7 queries , Gzip On, File On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表