C#获取当前光标图标

时间:2017-07-21 21:30:25

标签: c# wpf cursor

我一直试图这样做而且无法做到,这就是我所要做的:

[DllImport("user32.dll")]
static extern bool SetSystemCursor(IntPtr hcur, uint id);

[DllImport("user32.dll", EntryPoint = "GetCursorInfo")]
public static extern bool GetCursorInfo(out CURSORINFO pci);

[DllImport("user32.dll", EntryPoint = "CopyIcon")]
public static extern IntPtr CopyIcon(IntPtr hIcon);

[StructLayout(LayoutKind.Sequential)]
public struct CURSORINFO
{
    public Int32 cbSize;        // Specifies the size, in bytes, of the structure. 
    public Int32 flags;         // Specifies the cursor state. This parameter can be one of the following values:
    public IntPtr hCursor;          // Handle to the cursor. 
    public POINT ptScreenPos;       // A POINT structure that receives the screen coordinates of the cursor. 
}

public void etc()
{
    IntPtr hwndic = new IntPtr();
    CURSORINFO curin = new CURSORINFO();
    curin.cbSize = Marshal.SizeOf(curin);
    if (GetCursorInfo(out curin))
    {
        if (curin.flags == CURSOR_SHOWING)
        {
            hwndic = CopyIcon(curin.hCursor);
            SetSystemCursor(hwndic, OCR_NORMAL);
        }
    }
}

问题在于复制的图标有时与默认的鼠标图标不同,如果它在等待位置捕获它,例如它可能会给我鼠标等待图标。

我希望得到正在运行的系统的默认光标图标(空闲时的图标),我该怎么办?

提前致谢。

1 个答案:

答案 0 :(得分:0)

我已经解决了我的问题,经过一些研究后,我得到了一些有趣的东西,可能会一直有效。

我没有尝试保存游标的图标并加载它,而是想到了一个不同的想法。

我注意到每当我更改光标图标(假设使用代码,使用某个随机图标)时,每当我进入Windows光标设置时,图标都不会在那里更改,但是那里有图标。没有应用按钮来应用我以前的设置,因为Windows认为我正在使用这些设置。

因此,我将设置更改为一些随机的其他设置而不应用并返回到之前的设置并应用,这样就可以在任何更改之前将光标重置为原始光标。

因此,Windows正在做的是"刷新"鼠标,所以我走了,也许如果我可以强制刷新一切都会很完美,所以我找到了一种方法,使用这个功能:

[DllImport("user32.dll", CharSet = CharSet.Auto)]
private static extern Int32 SystemParametersInfo(UInt32 uiAction,UInt32 uiParam, String pvParam, UInt32 fWinIni);

当我看到msdn时,我发现其参数中有一些有趣的东西,参数" SPI_SETCURSORS(0x57)",我引用:

"重新加载系统游标。将uiParam参数设置为零,将pvParam参数设置为NULL。"

所以我尝试了它,并且它有效,这个过程的例子:

[DllImport("User32.dll", CharSet = CharSet.Ansi, BestFitMapping = false, ThrowOnUnmappableChar = true)]
private static extern IntPtr LoadCursorFromFile(String str);

uint SPI_SETCURSORS = 0x57;
var NewArrow = LoadCursorFromFile("C:\\Users\\mtnju\\Downloads\\invisible.cur"); // loads some new cursor icon using the LoadCursorFromFile function
SetSystemCursor(NewArrow, OCR_NORMAL); // sets the new cursor icon using the SetSystemCursor function
SystemParametersInfo(SPI_SETCURSORS, 0, null, 0);// reloads all of the system cursors

我认为我花了5分钟做这样的事情......我希望它会帮助你们,我非常感谢那些试图帮助我的评论。