菜单中的热键提示:Visual Studio
语言:C++
开发环境:Microsoft Visual C++
使用的库:MFC
问题:应该是一个相当简单的问题。我正在尝试将热键组合添加到菜单中的各种项目(保存、打开等)。通常,菜单会显示类似“保存”(左对齐)的内容,然后是 Ctrl - S(右对齐)。我该如何实现这个目标?我是只在标题中使用空格,还是有特定的方法来做到这一点?
Language: C++
Development Environment: Microsoft Visual C++
Libraries Used: MFC
Problem: Should be a fairly simple question. I'm trying to add in hotkey key-combinations to my menu for various items (Save, Open, etc.). Usually a menu will say something like "Save" (left-justified) and then Ctrl - S (right-justified). How do I accomplish this? Do I just use spaces in my caption, or is there a specific way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用制表符将命令文本与热键文本分开:(
请注意,这只会影响菜单的文本 - 要真正使热键起作用,您需要将其添加到加速器表中。)
Use a tab character to separate the command text from the hotkey text:
(Note that this only affects the text of the menu - to actually make the hotkey work, you need to add it to your accelerator table.)