Peter17
Peter17

Reputation: 3102

How to change default mouse cursor for the whole WPF application globally?

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

Answers (1)

stuartd
stuartd

Reputation: 73303

The Mouse.OverrideCursor method allows you to set the cursor for the entire application.

Upvotes: 9

Related Questions