我试图在鼠标左键处于“按下状态”时更改光标颜色。这应该可以在Windows 10中运行,因此可以在OS级别上运行,而不是在任何特定程序中运行。我想知道启用“ ClickLock”的时间。 反正有实现这一目标的方法吗?
我尝试过使用Autohotkey,但是什么也没发生
; Cursor types
IDC_APPSTARTING := 32650
~LButton::
while GetKeyState("LButton", "P")
{
; this is the code to the Dll call, but I am not sure how to integrate it
hCursor:=DllCall("LoadCursor", "UInt", NULL,"Int", IDC_APPSTARTING, "UInt")
DllCall("SetCursor","UInt",hCursor)
}
return
答案 0 :(得分:1)
有关更多信息,请参阅:https://autohotkey.com/board/topic/32608-changing-the-system-cursor/
Charge.*[0-9]+([,]?[0-9]+)*\.([0-9]){0,2}$
答案 1 :(得分:0)
您尝试过什么吗?我会说可能开始谷歌搜索。第一次尝试时,我遇到了一些不同的资源,这些资源使我了解了注册表项的方向,甚至还有一个漂亮的Powershell脚本来按需设置它们。做一点研究,兄弟。编码愉快。