就上UG网学UG二次开发:
菜单列表对话框有两种,单菜单列表对话框UC1603()与双菜单列表对话框UC1605(),以下是这两种菜单列表对话框的效果图。
UG二次开发
单列表菜单对话框C++源码:
- /* TODO: Add your application code here */
- /*单菜单列表选择对话框*/
- char title_string[] = "孔子培训www.kongzipx.com";
- char PromptStr[] = "就上UG网单选对话框";
- int Default = 0;//表示没有默认的选项,OK按钮始终保持不激活状态
- char Options[][38] = { "就上UG网学UG", "学UG就上UG网", "www.9sug.com" };
- int INumOFOptions = 3;//最多包含14个菜单选项
- uc1603( PromptStr, Default, Options, INumOFOptions);
- /* Terminate the API environment */
复制代码 多列表菜单对话框C++源码:
NX二次开发
- /*多选项菜单列表对话框*/
- char title_string[] = "孔子培训www.kongzipx.com";
- char PromptStr[] = "就上UG网多选项菜单对话框";
- char Options[][38] = { "就上UG网学UG", "学UG就上UG网", "www.9sug.com" };
- int INumOFOptions = 3;//最多包含14个菜单选项
- int Response[14];
- uc1605(PromptStr, 0, Options, INumOFOptions, Response);
- /* Terminate the API environment */
复制代码
|