如何在所有者绘制菜单中绘制自己的子菜单箭头(并防止窗口将其箭头绘制在我的顶部)
Windows 似乎在在我在 WM_DRAWITEM,如何阻止Windows绘制箭头?
Windows seems to draw the submenu arrow after I have done my painting in WM_DRAWITEM, how can I stop windows from drawing the arrow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 所有者在 CodeGuru 上绘制子菜单箭头。
简而言之,操作系统总是在您绘制完菜单项后绘制箭头,但您可以使用
ExcludeClipRect()
从HDC
中排除菜单项的矩形'完成在可绘制区域内的绘制后,操作系统将无法在您的绘图之上进行绘制。See Owner Drawing the Submenu Arrow on CodeGuru.
In a nutshell, the OS always draws the arrow after you are done drawing the menu item, but you can use
ExcludeClipRect()
to exclude the menu item's rectangle from theHDC
's drawable area after you are done drawing inside of it, so that the OS can't draw over top of your drawing.