如何使用 WndProc 检测模态标题栏何时完成闪烁?
我有一个 VB.net MDI 应用程序,其中包含一个模式窗口(普通窗口显示为模式)。我有一个自定义标题栏按钮,如果用户在模式区域之外单击,该按钮就会消失。
通常,单击关闭模式会导致系统发出蜂鸣声,然后闪烁模式窗口的标题栏。
我想知道如何检测闪烁何时完成(如果可能的话使用 WndProc),以便我可以重绘自定义按钮。
有人知道如何做到这一点吗?谢谢!
I have a VB.net MDI app that contains a modal window (normal window shown as modal). I have a custom title bar button that disappears if the user clicks outside the modal area.
Normally, clicking off a modal will cause the system to beep and then flash the title bar of the modal window.
I want to know how to detect when the flashing is complete (using WndProc if possible) so I can redraw the custom button.
Anyone know how this could be done? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
已经有一段时间了,但我相信当框架需要重新绘制时,您的窗口应该收到 WM_NCPAINT 消息。
It's been a while, but I believe your window should be receiving a WM_NCPAINT message when the frame needs to repaint.
事实证明,我的 WndProc(m) 行放在了错误的位置。
It turns out that I had the WndProc(m) line in the wrong spot.