★搜Asp.net★(www.soAsp.net),为专业技术文档网站。
包括Asp.net开发技术文档·C#开发技术文档·Access/SQL Server数据库开发技术文档·VB.NET开发技术文档。
还包括·项目实战经验总结·开发经验技巧总结·项目开发心得。
C#设置鼠标指针图标

using System.Windows.Forms 
... 
Cursor.Current = Cursors.Hand 
... 

Cursors集合中有很多

另外你可以用资源的方式加入,使用Cursor类来实例一个

/// <summary> 
/// 设置鼠标方案 
/// </summary> 
private void SetCursor() 

Cursor cr = Cursors.Default; 

if(index == 1 || index == 5) 

cr = Cursors.SizeNWSE; 

else if(index == 2 || index == 6) 

cr = Cursors.SizeNS; 

else if(index == 3 || index == 7) 

cr = Cursors.SizeNESW; 

else if(index == 4 || index == 8) 

cr = Cursors.SizeWE; 

else if(index == 0) 

cr = Cursors.SizeAll; 

Cursor.Current = cr; 
}
 
截段相关代码给你,具体的下这个例子去看,里面有处理设置鼠标的