问题描述
我正在尝试创建在关闭时关闭的窗口您可以在其外部单击,此刻我正在考虑通过处理WndProc函数来做到这一点.
I'm trying to make a window that closes when you click outside it, and at the moment I'm looking into doing that by handling the WndProc function.
到目前为止,我收到的所有消息似乎都没有用,但是有些我根本不理解.代码0x0118、0xC123、0xC128和0xC12E代表什么?
None of the messages I'm getting so far seem useful, but there are a few I don't understand at all. What do codes 0x0118, 0xC123, 0xC128 and 0xC12E represent?
推荐答案
0x0118:用于插入符号闪烁的WM_SYSTIMER(未记录)
0x0118: WM_SYSTIMER (undocumented) used for caret blinks
其他三个应该是应用程序定义的消息(范围在0xC000到0xFFFF之间),因此您不会在任何地方找到定义的消息.
The other three should be application defined messages (anything in the range 0xC000 to 0xFFFF) so you won't find those defined anywhere.
这篇关于这些WndProc代码是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!