user1770962
user1770962

Reputation: 221

WPF overwrite all default mouse cursors

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

Answers (1)

sa_ddam213
sa_ddam213

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

Related Questions