Say you have a WS_OVERLAPPEDWINDOW
window, and you show it for the first time:
::ShowWindow(hwnd, SW_SHOW);
The window appears with the expected fade-in animation (testing on Windows 10.0.18363).
If you then hide the window:
::ShowWindow(hwnd, SW_HIDE);
and try to re-show it again, with the SW_SHOW
call above, it will appear instantly, without the fade-in transition.
The question is: How to make ::ShowWindow()
use the fade-in transition when showing the window for the second time?
Note that both the first and subsequent SW_HIDE
calls do use the fade-out transition.
There's an unanswered 5-year old question that asks essentially the same for QT, but since this is a Win32 problem, not specific to QT, I've decided to re-ask it in more general terms.
Based on Sea Coast of Tibet's comment, I did this for a form in my Delphi app called FormPreview:
Fixed the problem for me where I show and re-show forms.