iCAx开思网
标题:
对话框中怎么获取由函数UF_UI_select_with_class_dialog();拾取的tag?
[打印本页]
作者:
wdg110
时间:
2011-10-31 11:27
标题:
对话框中怎么获取由函数UF_UI_select_with_class_dialog();拾取的tag?
在对话框中设置了一个按钮,在按钮回调函数中调用 UF_UI_select_with_class_dialog();来选择所需对象。之后我要用前面这个函数拾取的对象tag,但是不知道该怎么弄,请各位朋友帮忙解答,多谢了
作者:
tomaini
时间:
2011-10-31 14:41
if((UF_CALL(UF_UI_select_with_class_dialog(
cue, title, UF_UI_SEL_SCOPE_WORK_PART,
NULL, NULL, &response, &count, &objects))) == 0)
{
printf("object count = %d\n",count);
if (response == UF_UI_OK && count > 0)
{
for (i=0; i<count; i++)
{
printf("object tag = %d\n", objects[i]);
UF_DISP_set_highlight(objects[i], 0);
}
帮助里面例子,感觉讲的挺明白的
欢迎光临 iCAx开思网 (https://www.icax.org/)
Powered by Discuz! X3.3