c++ - Detect Window Move in Property Page (win32) -
I implemented a wizard using the property sheet. If a user enters something invalid then I show tooltips. This is a tracking tooltip, so I have to manually turn it on and off. Now I want to transfer the tooltip when the wizard page continues.
It seems that the property sheet window only receives the WM_MOVE event from the Windows page is not there when there is a way to be notified in the page window, when the wizard is gone?
property page is not related to its original window, property sheet - that's why He can not find the WM_MOVE message You can set a WM_MOVE handler in the property sheet and send it another message on the property page with postmassage or sent message. I suggest a message in the WM_APP category.
Comments
Post a Comment