到处隐藏光标
我正在使用 C#,希望全局隐藏光标。我可以使用 Cursor.Hide() 在光标位于我的应用程序上方时隐藏光标,但我想完全隐藏它,无论它在哪里。这可能吗?
I'm using C# and wish to hide the cursor globally. I can use Cursor.Hide() to hide the cursor while it is over my application, but I want to hide it completely, no matter where it is. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设你在 WPF 中。您可以使用:
为整个应用程序获取透明光标。
I assume you are in WPF. You can use:
to get a transparent cursor for your whole application.