Reputation: 3102
In my WPF application I am using only one mouse cursor.
Is there any way to change this cursor for the whole WPF application globally?
Upvotes: 4
Views: 3441
Reputation: 73303
The Mouse.OverrideCursor method allows you to set the cursor for the entire application.
Upvotes: 9