在 Windows API 中,确实存在 Animate_Play 函数,该函数用于启动或重新启动动画的播放。以下是该函数的基本签名和说明:
BOOL Animate_Play(
  HWND hwnd,
  WORD wFrom,
  WORD wTo,
  UINT cRepeat
);

参数说明:

  •  hwnd: 动画控件的句柄。

  •  wFrom: 播放的起始帧。

  •  wTo: 播放的结束帧。

  •  cRepeat: 指定动画的重复次数,如果为 0,则表示无限循环播放。


Animate_Play 函数返回一个布尔值,表示函数是否成功。如果成功,返回非零值;否则返回零。

要使用 Animate_Play 函数,需要链接到 Comctl32.lib 库。




转载请注明出处:http://www.zyzy.cn/article/detail/24626/Win32 API/Commctrl.h/Animate_Play