admin管理员组

文章数量:1404594

So in Delphi, controls that inherit from TGraphicControl are drawn first by VCL, then Windows draws its own controls (represented by TWinControls in VCL).

I need to display a loading icon while the program works, and the window contains Windows controls, so this means I need my gif to be displayed in a TWinControl placed above all others.

I'm not sure where to even begin to look into how to tell Windows to play a gif in a TWinControl ? The main problem is that I can't use a timer to handle the frames myself since the UI thread will be busy. So I need something that will handle the gif frames by itself.

本文标签: windowsHow can I make a gif play in a TWinControlStack Overflow