C# Winforms - 更改鼠标光标图标
如何将光标图标更改为桌面上通常显示的“忙碌图标”?如何设置动画文件(.gif、.ani)而不是光标?
How to change cursor icon to the 'busy icon' usually shown on the desktop? How can i set Animated files (.gif,.ani) instead of cursor ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试执行以下操作:
更多信息请访问 Cursors 类文档
Cursor 类不支持 GIF 文件或动画光标 (.ANI)。您可以加载自定义光标,
也许您可以使用 Microangelo 等工具将您的 GIF 文件转换为光标格式。此外,还有一个与之相关的线程。
如何将 GIF 转换为 CUR 文件?< /a>
Try to do the following:
More information is available at Cursors Class documentation
Cursor class doesn't support GIF files or animated cursors (.ANI). You can load a custom cursor doing
Maybe you can convert yout GIF file to cursor format using a tool like Microangelo. In addition, there is another thread related to it.
How do you convert a GIF into a CUR file?
我有一个图片框的答案
I have the answer for a picturebox
还有一种简单的纯 C# 方法:
MyCursor.cur 必须作为资源包含在您的项目中。
There is also simple pure-C# way:
The MyCursor.cur must be included as Resource in your project.
将 ImageFile 转换为 .cur 并添加到资源中。
像这样改变光标:
Convert a ImageFile to .cur and add to Resources.
Change Cursor like this: