i am working on a lock screen project and want to check for mouse sensitivity on lock screen, is there any way to check the mouse sensitivity in c#. any function that checks if sensitivity was high medium or low, anything like this
Asked
Active
Viewed 96 times
0
-
read this https://msdn.microsoft.com/en-us/library/system.windows.forms.mouseeventargs(v=vs.110).aspx – Thomas Apr 23 '17 at 07:25
-
1Check [this](http://stackoverflow.com/questions/35964472/getting-the-mouse-cursor-speed-in-c-sharp) SO question. – Abdullah Khan Apr 23 '17 at 07:40
1 Answers
0
There is SystemInformation.MouseSpeed, but This property is supported only on Windows 98, Windows Millennium Edition, Windows 2000, Windows XP, and the Windows Server 2003 family.
.
Give it a try on your target platform and see if it works.
You can also try the native call, see Do I need 2 different PInvokes to Get and Set mouse speed?

Community
- 1
- 1

user326608
- 2,210
- 1
- 26
- 33