在硬盘上找找ResEditor.exe文件 它会帮助你的 
他是MS带的一个例子,可以用来编辑资源文件

解决方案 »

  1.   

    把*.cur加入到工程里面,设置属性"生成操作"为"嵌入的资源"。
    System.IO.Stream stream = null; 
    try 

         string curName = "WindowsApplication1.Cursor1.cur"; 
         stream = this.GetType().Assembly.GetManifestResourceStream(curName); 
         this.Cursor = new Cursor(stream); 

    catch(Exception ex) 

         MessageBox.Show(ex.Message.ToString()); 

    finally 

         if(stream != null) 
              stream.Close(); 
    }
      

  2.   

    请问 icyer() ,这样是否可以让我编译后不用带.cur文件了?(还没有来得及试)
      

  3.   

    我试了,icyer的方法确实可行.向高手学习!