在多屏设置中隐藏鼠标光标

发布于 2024-11-16 07:34:00 字数 168 浏览 2 评论 0原文

我试图使用 win32 API ShowCursor(FALSE) 隐藏鼠标光标,但在多屏幕设置中,当鼠标到达另一个屏幕时,我在 Windows 中没有收到任何鼠标更新。

有什么办法可以防止这种情况发生吗?

这是针对全屏视频游戏的,我似乎没有找到任何可以执行此类操作的 Windows api。

I am trying to hide the mouse cursor using win32 API ShowCursor(FALSE), but on a multiscreen setup when the mouse gets to the other screen I don't get any mouse updates in windows.

Is there any way I can prevent this?

This is for a fullscreen video game and I don't seem to find any windows api that can do something like this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诺曦 2024-11-23 07:34:00

据我了解,您的问题不在于隐藏鼠标光标,而在于将其限制在您的窗口中?

在这种情况下,ClipCursor函数应该可以完成这项工作。

{
    RECT windowRect;
    GetWindowRect(hWnd, &windowRect);
    ClipCursor(&windowRect);
}

对于无边框全屏窗口,执行一次就可以了。如果窗口的位置或大小发生变化或窗口失去焦点,则需要重复该步骤。

对于游戏编程,可能有更好的方法,例如 DirectInput,它提供了专有的鼠标处理模式(教程可用)并在较低级别上为您完成所有这些工作。

有一些关于处理此问题的不同方法的讨论,例如 MSDN 论坛上的这个

另一方面,如果您希望光标能够离开窗口,并且仅在其位于窗口上方时将其隐藏,则应该处理 WM_SETCURSOR 消息并使用 SetCursor 为隐藏光标。

case WM_SETCURSOR:
    SetCursor(NULL);
    return TRUE;

From what I understand, your problem is not in hiding the mouse cursor, but in constraining it to your window?

In that case, the ClipCursor function should do the job.

{
    RECT windowRect;
    GetWindowRect(hWnd, &windowRect);
    ClipCursor(&windowRect);
}

For a border-less full-screen window, it should be fine to do that once. You would need to repeat that step if your window's position or size ever changes or the window loses focus.

For game programming, there are likely better methods though, such as DirectInput, which provides an exclusive mouse handling mode (tutorials available) and does all that for you on a lower-level basis.

There are some discussions available about the different ways to handle this, for instance this one on the MSDN forums.

If, on the other hand, you want the cursor to be able to leave your window, and only hide it while it's over your window, you should handle the WM_SETCURSOR message and use SetCursor to hide the cursor.

case WM_SETCURSOR:
    SetCursor(NULL);
    return TRUE;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文