http://www.open-open.com/ajax/Tooltips.htm

解决方案 »

  1.   

    this.Cursor = Cursors.WaitCursor; 
    this.Cursor = new Cursor(文件名);
    数据保存到数据库或XML等
      

  2.   

    [DllImport("user32.dll")]
                private static extern IntPtr LoadCursorFromFile(string fileName); 
    Cursor c =new Cursor(LoadCursorFromFile(Application.StartupPath + "\\Cursors\\Arrow.cur"));
                    this.Cursor = c;