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

时间:2010-05-25 05:54:10

标签: c# winforms cursor mouse

如何将光标图标更改为桌面上常见的“忙碌图标”?如何设置动画文件(.gif,.ani)而不是光标?

3 个答案:

答案 0 :(得分:41)

尝试执行以下操作:

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

有关详情,请访问Cursors Class documentation

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

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

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

How do you convert a GIF into a CUR file?

答案 1 :(得分:1)

我有一个图片框的答案

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

答案 2 :(得分:1)

还有简单的纯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 必须作为资源包含在您的项目中。