i want to detect when a user has *finished* resizing a window - WM_SIZE occurs for every move - not what i need - since im not getting WM_NCLBUTTONUP in a sizeable dialog, does anyone know how to detect this ? Thanks!
Printable View
i want to detect when a user has *finished* resizing a window - WM_SIZE occurs for every move - not what i need - since im not getting WM_NCLBUTTONUP in a sizeable dialog, does anyone know how to detect this ? Thanks!
Hello,
If this is about a view class with a frame window enveloping it,
you may try overriding the RecalcLayout() method of the frame window class.
I think that one is called when the sizing ends.
This doesn't necessarily answer your question, but I would like to point out that if the window has a system menu, it can be resized without the mouse. WM_NCLBUTTONUP would not have worked for those cases.
Regards,
Paul McKenzie