如何像gif一样连续显示两个图像?

时间:2017-12-21 13:47:56

标签: delphi

enter image description here enter image description here enter image description here enter image description here

我想连续运行两张图片。我尝试无限循环,但我的应用程序已被阻止。

它看起来像一个GIF,但我没有这些图像的GIF。我尝试了以下方法:

while 1=1 then
begin
    btnNotification.Glyph.LoadFromFile(ICON_DIR + '/notification-active-1.bmp');
    sleep(200);    
    btnNotification.Glyph.LoadFromFile(ICON_DIR + '/notification-active-2.bmp');
end;

0 个答案:

没有答案