Popup animation C ++ win32

I am creating an application that uses popups. However, I would like to animate this popup (win32 window, HWND), for example, so that it slowly expands from the bottom of my screen, moving upwards. Should I make several dozen calls to the SetWindowPos function with a little pause in between, or is there a better way to do this using C ++ and win32?

+1


a source to share


1 answer


You can also use the AnimateWindow () function for the Windows API.



+6


a source







All Articles