WM_ERASEBKGND 后面没有 WM_PAINT
我的应用收到一条 WM_ERASEBKGND
消息,但没有后跟一条 WM_PAINT
消息。 很自然地,我的应用程序会删除背景,然后就只剩下一个空白窗口。
我在Vista下运行,但在XP下也会发生这种情况。 我很确定这是我的错,但我能做什么才能让 Windows 不工作呢?
我对这些消息相当确定,因为我正在使用 Spy++ 来观看。 这是一个在 MSVC 2008 下编译的 C 应用程序。
My app is getting a WM_ERASEBKGND
message which is not followed by a WM_PAINT
message. Naturally enough my application erases the background, and then just sits there with a blank window.
I am running under Vista, but it happens under XP as well. I am pretty sure it is my fault, but what could I be doing so that Windows does not behave?
I am fairly sure about the messages as I am using Spy++ to watch. This is a C app compiled under MSVC 2008.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要在
WM_ERASEBKGND
处理程序中调用BeginPaint
/EndPaint
。Don't call
BeginPaint
/EndPaint
in yourWM_ERASEBKGND
handler.