gpt4 book ai didi

c# - 以编程方式更改 Windows 中的自定义鼠标光标?

转载 作者:太空狗 更新时间:2023-10-29 20:15:56 26 4
gpt4 key购买 nike

我正在尝试将 Windows 光标(默认为 Windows 自定义方案)更改为我的自定义光标(名为 Cut the rope):

enter image description here

有没有办法将所有光标(箭头、忙碌、帮助选择、链接选择等)更改为我的 Cut the rope?

最佳答案

如果您想更改默认的鼠标光标主题:

enter image description here

您可以在注册表中更改它:

有三个主要的注册表项在起作用。

  1. 注册表项 HKEY_CURRENT_USER\Control Panel\Cursors 包含事件用户光标

1a) 下面的值是不同类型的游标
1b) Scheme Source 指定了当前正在使用的游标方案的类型。

不同的值是:

“0”——Windows 默认值
“1”——用户方案
"2"——系统方案

  1. 注册表项 HKEY_CURRENT_USER\Control Panel\Cursors 包含用户定义的游标方案(即 Scheme Source = 1)

  2. 注册表项 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\Schemes 包含系统光标方案(即 Scheme Source = 2)

enter image description here

如果您已经将路径更改为 HKCU\Control Panel\Cursors 中的一种游标类型,并且意识到它没有执行任何操作。你是对的,仅仅更新一个键——例如 HKCU\Control Panel\Cursors\Arrow——是不够的。您必须告诉 Windows 加载新光标。

这是 SystemParametersInfo 的位置电话进来了。为了试试这个,让我们继续将 HKCU\Control Panel\Cursors\Arrow 更改为 C:\WINDOWS\Cursors\appstar3.ani(假设你有这个图标),然后调用 SystemParametersInfo。

在 AutoHotKey 脚本中:

SPI_SETCURSORS := 0x57
result := DllCall("SystemParametersInfo", "UInt", SPI_SETCURSORS, "UInt", 0, "UInt", 0, "UInt", '0')
MsgBox Error Level: %ErrorLevel% `nLast error: %A_LastError%`nresult: %result%

翻译成 C#:

[DllImport("user32.dll", EntryPoint = "SystemParametersInfo")]
public static extern bool SystemParametersInfo(uint uiAction, uint uiParam, uint pvParam, uint fWinIni);

const int SPI_SETCURSORS = 0x0057;
const int SPIF_UPDATEINIFILE = 0x01;
const int SPIF_SENDCHANGE = 0x02;

调用它:

SystemParametersInfo(SPI_SETCURSORS, 0, 0, SPIF_UPDATEINIFILE | SPIF_SENDCHANGE);

更改为默认 Windows 光标

现在是棘手的部分。如果您查看 HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\Schemes,您会注意到“Windows Default”被定义为“,,,,,,,,,,,,”,换句话说,没有指针到实际的游标!

现在怎么办?不用担心。您所要做的就是将不同的游标类型设置为空字符串,然后照常调用 SystemParametersInfo。事实上,您可以在任何方案中将任何光标类型设置为空字符串,Windows 会将其默认为“Windows 默认”方案中的等效项。

引用:

https://thebitguru.com/articles/programmatically-changing-windows-mouse-cursors/3

https://social.msdn.microsoft.com/Forums/vstudio/en-US/977e2f40-3222-4e13-90ea-4e8d0cdf289c/faq-item-how-to-change-the-systems-cursor-using-visual-cnet?forum=csharpgeneral

关于c# - 以编程方式更改 Windows 中的自定义鼠标光标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41713827/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com