自定义的鼠标Cursor 有的鼠标Cursor文件可以 有的不可以 不知cur文件用什么要求?
hhfh 2008-12-26 10:01:01
string fullPath = Path.Combine("Icons\\Interface", Path); //文件路径是对的 就是有的文件为啥不能用 说图片损坏
try
{
Cursor res = new Cursor(fullPath);
return res;
}
catch (Exception caught)
{
return Cursors.Default;
}