在C#UWP应用程序中,我使用Window.Current.CoreWindow.PointerCursor = null来尝试将鼠标光标设置为停止渲染,这些渲染过去曾用于几个窗口10更新,但最近光标不再消失。
删除光标渲染的正确方法是什么?
此外,我尝试在Window.Current.CoreWindow.Dispatcher.RunAsync方法内外运行代码。
我确认Window.Current.CoreWindow.PointerCursor在设置后为null。
答案 0 :(得分:2)
您需要在App
构造函数
this.RequiresPointerMode = Windows.UI.Xaml.ApplicationRequiresPointerMode.WhenRequested;