I have a wpf application with a time consuming process i use the below code ,to change the cursor to show that it is loading
Mouse.OverrideCursor = System.Windows.Input.Cursors.Wait;
and once operation is done i use this to make the cursor back to an arrow
Mouse.OverrideCursor = System.Windows.Input.Cursors.Arrow;
However my users want the loading cursor size bigger ,i tried checking for properties to increase the height and width of Cursors or Mouse ,but couldnt find any. Most of the solutions in google require to create custom loader which requires a lot of coding ,compared to the simple approach above .