user985513
user985513

Reputation:

C# / WPF - Changing the Cursor global

if I set the Cursor in my Wpf app like this:

this.Cursor = System.Windows.Input.Cursors.Hand;

it only effects the Wpf app, but I want to do this change Windows global - any ideas?

Upvotes: 2

Views: 2043

Answers (1)

bigtlb
bigtlb

Reputation: 1572

It is a registry call and an API call to reload.

http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/977e2f40-3222-4e13-90ea-4e8d0cdf289c/

Upvotes: 1

Related Questions