我做一个winform的项目,需要改变窗体的鼠标图标,我从网上下载了一段代码
public void SetCursor(Bitmap cursor, Point hotPoint)
        {
            int hotX = hotPoint.X;
            int hotY = hotPoint.Y;
            Bitmap myNewCursor = new Bitmap(cursor.Width * 2 - hotX, cursor.Height * 2 - hotY);
            Graphics g = Graphics.FromImage(myNewCursor);
            g.Clear(Color.FromArgb(0, 0, 0, 0));
            g.DrawImage(cursor, cursor.Width - hotX, cursor.Height - hotY, cursor.Width, cursor.Height);            this.Cursor = new Cursor(myNewCursor.GetHicon());            g.Dispose();
            myNewCursor.Dispose();
        }        private void Login_Load(object sender, EventArgs e)
        {
            Bitmap a = (Bitmap)Bitmap.FromFile("Images/pm.png");
            SetCursor(a, new Point(0, 0)); //new Point() 定义鼠标的可用点位置。
        }但是执行后窗体初始的那个箭头还存在,和我载入的图标重叠移动,不知道是为什么,怎么才能让windows默认的那个箭头隐藏掉或去掉??