Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 windows 窗体应用程序中,我想捕获 windows 7 snap 消息,有没有人知道当窗口即将被捕捉时生成了哪个消息。
我试图监听应用程序,它看起来像 WM_GETMINMAXINFO = 0x24; 生成。
谁能确认这是否真的是用于 snap 的 Windows 消息?
调用 WM_GETMINMAXINFO 来确定窗口的最小尺寸和最大尺寸,它在 SNAP 期间调用,以便它不会将窗口的大小调整到超出其实际轮廓尺寸,因此,如果您有一个高度为 500 且高度恒定的应用程序,您不希望窗口调整其大小以适应屏幕的高度。
然后它应该调用 SetWindowPlacement 函数。