In a C# UWP application I use Window.Current.CoreWindow.PointerCursor = null to try and set the mouse cursor to stop rendering which used to work a few windows 10 updates ago but recently the cursor no longer disappears.
What is the correct method to remove the rendering of the cursor?
Also I have tried running the code both in and outside a Window.Current.CoreWindow.Dispatcher.RunAsync method.
And I have verified that Window.Current.CoreWindow.PointerCursor is null after I set it.