自定义光标的图像问题
我想用一个图片(如ice.bmp)作为我的光标图案,怎样设置?光标的后缀不是.cur吗?
我在MSDN上它是这样说的:
// To add a custom cursor, create or use an existing 16x16 bitmap
// 1. Add a new cursor file to your project:
// File->Add New Item->Local Project Items->Cursor File
// 2. Select 16x16 image type:
// Image->Current Icon Image Types->16x16
其中第一条就是自己绘制,第二条是用已存在的图片做光标,可我没有找到Image这个选项啊!!
一般的自定义光标是 Cursor a = new Cursor(GetType(),"Mycursor.cur");
望高手不吝赐教!