Just by processing the WM_SIZE message, is it possible to know if the window was restored from a minimized state ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No it is not –
wParam will be SIZE_RESTORED (0)
and lParam will have the new size of the window.
Unless you stored in the window when it was minimized, you will not be able to know when it is restored from this message alone.