说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 动态快捷菜单
1)  active swift menu
动态快捷菜单
1.
The design of active swift menu can be realized by tMsControls.
u32插件结合系统函数能在Authorware中实现动态快捷菜单设计。
2)  shortcut menu
快捷菜单
3)  context menu
快捷菜单、上下文菜单
4)  dynamic menu
动态菜单
1.
To increase the flexibility of the management information system (MIS), the authors introduce analysis and design idea of dynamic menu and pivotal technology of realizing dynamic menu based on VB.
为了增加管理信息系统(MIS)的灵活性,给出了动态菜单的分析设计思想以及使用VB实现动态菜单的关键技术。
2.
This paper completes the system structure and database design and describes the program s interfaces,dynamic menu,dynamic table and other key techniques based on an analysis of business process,function needs and project system.
基于业务流程、功能需求和系统结构的分析完成了系统的结构和数据库设计,并对程序接口、动态菜单和动态表格等关键技术进行了论述,最后在系统中予以实现。
3.
To improve the flexibility of the software,this paper introduces analysis and design idea of dynamic menu and key technology of realizing dynamic menu based on DELPHI.
为了提高软件的灵活性,给出了动态菜单的分析设计思想及使用DELPHI实现动态菜单的关键技术。
5)  popup menu
快显菜单
6)  dynamic menu editor
动态菜单编辑器
1.
This paper introduces a new kind of dynamic menu editor as a middleware technology and its characteristic,method and prospect.
本文着重论述了在我院的HIS系统中运用了体现中间件技术的动态菜单编辑器,介绍了它的特点、方法及运用前景。
补充资料:UG自定义右键弹出菜单和快捷键

UG的右键弹出菜单包含了一些我们常用的功能,比如Roate、Fit等,为了使用的更加方便,我们也可以自己打造!打开UG安装目录下的UGII下的menus文件夹,里面包含了一些*.men和*.tbr,我们以文本方式打开它,发现也不难理解。例如,我们想在右键弹出菜单里面的roate和pan之间加入如图示的view下的orient功能,首先我们打开ug_main.men,查找orient,会看到下面的内容:



BUTTON UG_VIEW_REFRESH
LABEL &Refresh
BITMAP refresh_window.bmp
ACCELERATOR F5
ACTIONS STANDARD



CASCADE_BUTTON UG_VIEW_EDIT
LABEL O&peration



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACTIONS STANDARD



参考上面部分我们会看出快捷键的定义是*ACCELERATOR来指定的,我们把红色部分即BUTTON UG_VIEW_ORIENT的LABEL下面加入一行ACCELERATOR Ctrl+Alt+O(这里可以自行定义,但不要和别的重复),保存,这样我们就把快捷键定义好了,然后我们选中红色部分复制。接着打开ug_view_popup.men,它就是右键弹出菜单的定义文件。为了把它放在roate和pan之间,我们把刚才复制的部分粘贴在下面图示的位置:



TOGGLE_BUTTON UG_VIEW_POPUP_ROTATE
LABEL R&otate
BITMAP rotate.bmp
ACCELERATOR F7
ACTIONS STANDARD



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACCELERATOR Ctrl+Alt+O
ACTIONS STANDARD



TOGGLE_BUTTON UG_VIEW_POPUP_PAN
LABEL &Pan
BITMAP pan.bmp
ACCELERATOR F9
ACTIONS STANDARD

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条