I would like to detect when the form is going to be maximized to save certain settings (not related to the size nor position) and modify the size and position a little bit. Is there an universal way to do it ?
I’ve tried to catch the WM_SYSCOMMAND message like in this article. It works well for maximization from menu, by maximize button, but it’s not fired when I press the WIN + UP keystroke. Does anyone know an universal way how to catch the maximization event including the case with WIN + UP keystroke ?
Thanks
You can use the
WM_GETMINMAXINFOmessage to save the state of the window and then use theWMSizemessage to check if the window was maximized.in you form declare the mesage handler like so :
And handle like this :