Winforms Treeview 的动画图标?
我想显示一个“正在加载”图标,因为树视图的每个节点都在等待加载。我想象的是 Win 7 旋转的等待圈,但任何动画图标都可以。使用标准 Winforms 树视图可以实现这一点吗?
我使用的是 VS 2010、Win 7/64、.NET 3.5。应用程序也需要在 XP/32 上运行。
I'd like to show a "Loading" icon as each node of a treeview is waiting to be loaded. I'm picturing the Win 7 waiting circle that spins, but any animated icon would work. Is this possible with the standard Winforms treeview?
I'm on VS 2010, Win 7/64, .NET 3.5. App needs to run on XP/32 as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标准树视图不支持动画光标或 gif(.cur 或 .ani;.gif)。您可以使用计时器并交换节点的图标来创建您自己的动画。
The standard treeview does not support animated cursors or gifs (.cur or .ani; .gif). You can use a timer and swap out the nodes' icon to create your own animation.