如何将鼠标光标设置为隐藏在UWP应用程序中?

时间:2017-10-10 02:15:00

标签: c# xaml uwp monogame

在C#UWP应用程序中,我使用Window.Current.CoreWindow.PointerCursor = null来尝试将鼠标光标设置为停止渲染,这些渲染过去曾用于几个窗口10更新,但最近光标不再消失。

删除光标渲染的正确方法是什么?

此外,我尝试在Window.Current.CoreWindow.Dispatcher.RunAsync方法内外运行代码。

我确认Window.Current.CoreWindow.PointerCursor在设置后为null。

1 个答案:

答案 0 :(得分:2)

您需要在App构造函数

中编写以下代码
this.RequiresPointerMode = Windows.UI.Xaml.ApplicationRequiresPointerMode.WhenRequested;