mihajlv
mihajlv

Reputation: 2315

Slowing mouse speed

Any ideas on how I can slow down the mouse speed in a wpf application. Google didn't come up with anything. Should this be dealt with native events from Win32.

Upvotes: 3

Views: 1119

Answers (1)

Jake Berger
Jake Berger

Reputation: 5377

here

SPI_GETMOUSESPEED = 112 decimal
SPI_SETMOUSESPEED = 113 decimal
source

OnAppStart -> get system current mouse speed
OnMouseEnter -> set to slow
OnMouseLeave -> set to system
OnAppShutdown -> set to system

EDIT
Additional Reference

Upvotes: 4

Related Questions