我需要在所有窗口中更改光标,而不只是在应用程序中,我已经尝试过:
this.Cursor = Cursors.WaitCursor;
和这个:
System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor;
但它只是改变我的应用程序中的光标.
任何想法?
解决方法
假设你有你自己的光标文件(.cur)来应用,你可以把它删除.
首先,您必须更改注册表中的默认箭头光标,然后您将需要调用一些P-Invoke来允许操作系统更新当前的系统参数,以便游标实际上发生变化.
事情像:
private void ChangeCursor(string curFile) { Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Cursors\","Arrow",curFile); SystemParametersInfo(SPI_SETCURSORS,null,SPIF_UPDATEINIFILE | SPIF_SENDCHANGE); } const int SPI_SETCURSORS = 0x0057; const int SPIF_UPDATEINIFILE = 0x01; const int SPIF_SENDCHANGE = 0x02; [DllImport("user32.dll",EntryPoint = "SystemParametersInfo")] public static extern bool SystemParametersInfo(uint uiAction,uint uiParam,uint? pvParam,uint fWinIni);
用法:
ChangeCursor(@"C:\MyCursor.cur");