1 #include <uf.h> 2 #include <uf_ui.h> 3 #include <uf_modl.h> 4 5 6 UF_initialize(); 7 8 //参数选择对话框 9 UF_FEATURE_SIGN sign = UF_NULLSIGN; 10 double dBlockOrig[3] = { 0.0, 0.0, 0.0 }; 11 char* sBlockLengh[3] = { "1", "2", "3" }; 12 tag_t tBlockObj; 13 char sMessage[] = "参数选择对话框"; 14 int iCount; 15 tag_t* atExp; 16 int iResponse; 17 UF_MODL_create_block1(sign, dBlockOrig, sBlockLengh, &tBlockObj); 18 UF_UI_select_parameters(sMessage, tBlockObj, &iCount, &atExp, &iResponse); 19 UF_free(atExp); 20 21 UF_terminate(); 22 23 Caesar卢尚宇 24 2019年7月1日
相关文章
- 03-16NX二次开发-UFUN参数选择对话框UF_UI_select_parameters
- 03-16NX二次开发-UFUN进度中断检测,打开中断检测(对话框)UF_ABORT_enable_abort
- 03-16NX二次开发-UFUN进度中断检测,关闭中断检测(对话框)UF_ABORT_disable_abort
- 03-16NX二次开发-UFUN拾取平面对话框UF_UI_specify_plane
- 03-16NX二次开发-UFUN单对象选择对话框UF_UI_select_with_single_dialog
- 03-16NX二次开发-UFUN选择草图对话框UF_UI_select_sketch
- 03-16NX-二次开发UFUN在面上创建等参数曲线UF_MODL_create_isocurve
- 03-16NX二次开发-UFUN新建文件选择对话框UF_UI_ask_create_part_filename
- 03-16NX二次开发-UFUN向选择列表添加对象UF_UI_add_to_sel_list以及调用内部函数SEL_ask_persistent_context获得选择指针
- 03-16NX二次开发-UFUN向选择列表添加对象UF_UI_add_to_sel_list以及调用内部函数SEL_ask_persistent_context获得选择指针