0

I am wondering if anybody has information on how to switch my cursor to a progress ring while I am waiting for a new window to launch within my uwp app. I've seen the documentation for the Progress Ring/Bar classes, and I can't see an obvious way to attach the control to my cursor instead of using a static progress ring. Any suggestions are helpful! Thanks

kdun0508
  • 75
  • 10
  • Possible duplicate of [Change cursor in Windows Store Apps](https://stackoverflow.com/questions/7472202/change-cursor-in-windows-store-apps) – Stefan May 30 '18 at 13:49

1 Answers1

0

See duplicate, but:

Windows.UI.Xaml.Window.Current.CoreWindow.PointerCursor = 
    new Windows.UI.Core.CoreCursor(Windows.UI.Core.CoreCursorType.Wait , 1);

Note that the "ring" is just an OS representation of the state and might change over time.

Stefan
  • 17,448
  • 11
  • 60
  • 79