说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 弹下式菜单
1)  pop-down menu
弹下式菜单
2)  popup menu
弹出式菜单
1.
As a prevailing software design tool,PowerBuilder has many program skills,some of which are discussed in this paper,including skills for selecting multiple rows and data protection in datawindow,design for popup menu and design for context help.
PowerBuilder作为一种流行的软件开发工具有许多应用技巧 ,本文就数据窗口的多行选择、数据窗口的保护、弹出式菜单设计以及上下文帮助等实现技巧做了详细讨
2.
A detailed discussion is conducted on design of popup menu and graphic menu with BMP.
虽然PowerBuilder有自己的菜单制作工具 ,但在制作一些特殊要求的菜单方面存在一些不足 ,本文就制作弹出式菜单和带位图菜单的技巧做了详细讨论。
3)  pop-up menu
弹出式菜单
1.
The response to menu (Pull-down Menu, Pop-up Menu) is a common way of interaction in doing multi-media courseware.
制作多媒体课件时,菜单响应(下拉式菜单、弹出式菜单)是一种常用的交互方式。
4)  pull-down menu
下拉式菜单
1.
The paper introduces a data-processing supervisory system for grain storageand carriage, analyses the Syructure and function of the system in detail,and relates themethods of making pull-down menu and mix-programming FoxBASE ̄+ and C languageemphatically.
本文介绍了一个用于粮食储运数据(包括储粮数据和粮食流通数据)的管理系统,详细分析了它的结构与功能,并着重讲解了如何构造下拉式菜单和FoxBASE ̄+与C语言混合编程等难题的解决方法。
2.
The response to menu (Pull-down Menu, Pop-up Menu) is a common way of interaction in doing multi-media courseware.
制作多媒体课件时,菜单响应(下拉式菜单、弹出式菜单)是一种常用的交互方式。
3.
Combining country standard and making use of the parametric drawing ability of AutoLISP program, it sets up the library of mechanical components in common use and pull-down menu;it develops the hydraulic elements graphical symbol into block and integrates into image library, then making image menu.
研究利用 Auto CAD软件进行二次开发 ,结合国标用 Auto L ISP语言的参数化绘图功能建立了常用机械零部件图库和下拉式菜单 ,将液压元器件图符制成块并集成文件库 ,然后制作成图标菜单 ,最终高度集成常用机械零部件及相关元器件 CAD图库 ,解决了工程设计人员重复性绘图所造成的时间、资源的浪费问题 ,提高了图纸质量和出图效
5)  pulldown menu
下拉式菜单
1.
This article introduces two ways of making the visual interface of the software of fibra intertwist tension system-pulldown menu design、graphics menu design,which tells detailedly of the traits、structures and making procedures of two menus ,and finally gives illustrations and some program codes.
0制作关于纤维缠绕张力制度软件可视界面的两种方法 ,下拉式菜单设计、图形化菜单设计。
6)  Drop-down menu
下拉式菜单
1.
This system deals with twenty-one experiments of modern physics data,and adopts drop-down menu and interactive mode operation.
本文介绍了一个“近代物理实验数据的计算机管理系统”,该系统可管理21个近代物理实验数据,全部采用下拉式菜单、对话式操作,有良好的用户界面。
补充资料: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

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