且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在使用Windows窗体应用程序时将鼠标光标更改为自定义光标?

更新时间:2023-10-26 20:13:40

如果您有光标文件:

  Cursor myCursor = new Cursor(myCursor.cur); 
myControl.Cursor = myCursor;

否则必须创建一个:



有关自定义光标的一些详细信息 p>

In a UserControl I want to change the mouse cursor from the arrow, to a hand icon.
What I currently do is this:

this.Cursor = Cursors.Hand;

This is very nice, it gives me a mouse cursor looking like this:

But here comes my problem... this shows a hand with a pointing finger.
What I need is a "grabbing" hand, more like this one:

How do I do this?, How can I load an icon file (.ico), a cursor file (.cur), or image file (.png), and use it as the mouse cursor?

If you have a cursor file:

Cursor myCursor = new Cursor("myCursor.cur");
myControl.Cursor = myCursor;

otherwise you have to create one:

some more information about custom cursors