Reputation: 221
Is it possible to change all default cursors (defined by .NET) to changed into other cursors for a single skin style? I mean that if the mouse touch the current window all default cursors from the defined style should be used.
Upvotes: 1
Views: 774
Reputation: 43596
you can use the Mouse.OverrideCursor
property to globaly change the Cursor
for the whole WPF
application
Example:
Mouse.OverrideCursor = Cursors.Hand;
Upvotes: 1