更改图片控件中的图标

发布于 2024-09-08 07:54:55 字数 45 浏览 3 评论 0原文

我需要在运行时每 5 秒在图片控制中更改图标,以便向用户通知工作正在进行中?

What do i need to change icons at runtime every 5 seconds in picture control to give the user a notification that the work is in progress?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

守不住的情 2024-09-15 07:54:55
  1. 加载一些图标。
  2. 启动一个计时器,每隔一段时间就会接到电话。
  3. 发送STM_SETICON消息给图片控件(实际上是静态控件)。
  4. 当不再需要时杀死计时器。
  5. 释放图标手柄。

其他兴趣点:

  1. 如果加载其他类型的图像对象(而不是图标),您需要发送相应的消息。有关详细信息,请参阅 msdn 中的 STM_SETICON。

  2. 计时器是一个中断,与任何其他 Windows 消息不同,因此如果您不小心,可能会导致线程不安全。尽快离开计时器子例程。

希望这有帮助。
米罗

  1. Load a few icons.
  2. Start up a timer to get called every so often.
  3. Send STM_SETICON message to the picture control (which is in fact static control).
  4. Kill the timer when no longer needed.
  5. Release the icons handles.

Other points of interest:

  1. if load other types of image objects (as opposed to icons) you need to send respective messages. See STM_SETICON in msdn for details.

  2. The timer is an interrupt, in difference for any other windows message, hence might be thread unsafe if you are not careful. Leave the timer subroutine as soon as possible.

Hope this helps.
Miro

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文