C# Winforms - 更改鼠标光标图标

发布于 2024-09-02 15:14:43 字数 57 浏览 2 评论 0原文

如何将光标图标更改为桌面上通常显示的“忙碌图标”?如何设置动画文件(.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 技术交流群。

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

发布评论

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

评论(4

农村范ル 2024-09-09 15:14:43

尝试执行以下操作:

System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor;

更多信息请访问 Cursors 类文档

Cursor 类不支持 GIF 文件或动画光标 (.ANI)。您可以加载自定义光标,

Cursor.Current = new Cursor("C:\\ic.cur");

也许您可​​以使用 Microangelo 等工具将您的 GIF 文件转换为光标格式。此外,还有一个与之相关的线程。

如何将 GIF 转换为 CUR 文件?< /a>

Try to do the following:

System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor;

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

Cursor.Current = new Cursor("C:\\ic.cur");

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?

黒涩兲箜 2024-09-09 15:14:43

我有一个图片框的答案

Picturebox1.cursor = new cursor(Properties.Resources.CURSOR NAME.GetHicon());

I have the answer for a picturebox

Picturebox1.cursor = new cursor(Properties.Resources.CURSOR NAME.GetHicon());
赠我空喜 2024-09-09 15:14:43

还有一种简单的纯 C# 方法:

System.Windows.Forms.Cursor cursor = null;      
var info = System.Windows.Application.GetResourceStream(
        new Uri(@"pack://application:,,,/Resources/MyCursor.cur"));
cursor = new System.Windows.Forms.Cursor(info.Stream);

MyCursor.cur 必须作为资源包含在您的项目中。

There is also simple pure-C# way:

System.Windows.Forms.Cursor cursor = null;      
var info = System.Windows.Application.GetResourceStream(
        new Uri(@"pack://application:,,,/Resources/MyCursor.cur"));
cursor = new System.Windows.Forms.Cursor(info.Stream);

The MyCursor.cur must be included as Resource in your project.

顾忌 2024-09-09 15:14:43

将 ImageFile 转换为 .cur 并添加到资源中。

像这样改变光标:

using (MemoryStream cursorStream = new MemoryStream(Properties.Resources.myImageFile))
{
    textbox1.Cursor = new Cursor(cursorStream);
}    

Convert a ImageFile to .cur and add to Resources.

Change Cursor like this:

using (MemoryStream cursorStream = new MemoryStream(Properties.Resources.myImageFile))
{
    textbox1.Cursor = new Cursor(cursorStream);
}    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文