更改图片控件中的图标
我需要在运行时每 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
其他兴趣点:
如果加载其他类型的图像对象(而不是图标),您需要发送相应的消息。有关详细信息,请参阅 msdn 中的 STM_SETICON。
计时器是一个中断,与任何其他 Windows 消息不同,因此如果您不小心,可能会导致线程不安全。尽快离开计时器子例程。
希望这有帮助。
米罗
Other points of interest:
if load other types of image objects (as opposed to icons) you need to send respective messages. See STM_SETICON in msdn for details.
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