在 WinAPI 中创建菜单条?
使用 WinAPI 时有没有办法获得菜单条而不是 HMENU?喜欢 .Net 应用程序使用的菜单吗?因为 HMENU 不适合我的配色方案,所以我需要一个较暗的菜单。
谢谢
Is there a way to get a menustrip instead of an HMENU when using the WinAPI? Like menus that .Net applications use? Because the HMENU just doesn't fit my color scheme, I need a darker menu.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不喜欢系统默认设置,您可以自行绘制菜单。如果您只需要支持 Windows Vista 及更高版本,可以按照这篇文章。否则,您需要调用 ModifyMenu()您的菜单项并设置 MF_OWNERDRAW 以及随之而来的所有内容。
If you don't like the system defaults, you can owner-draw the menu. If you only need to support Windows Vista and higher, you can follow this article. Otherwise you need to call ModifyMenu() on your menu items and set MF_OWNERDRAW and everything that comes with that.