J Lonardoni
J Lonardoni

Reputation: 21

How to programmatically call the touch screen calibration tool in Windows 10

There is a panel in Windows 10 called Tablet PC Settings which has a button that allows a user to calibrate the touch input.

I would like to programmatically call this calibration tool, but can't find an API to do it.

Does anybody know if there is an API for this?

Thanks!

Upvotes: 2

Views: 1997

Answers (1)

Ivan
Ivan

Reputation: 305

As Alex and kowsikbabu suggested, the easiest way is to invoke the MultiDitiMon process with the -touch or -pen argument

Process.Start(@"C:\Windows\System32\MultiDigiMon.exe", "-touch");

Process.Start(@"C:\Windows\System32\MultiDigiMon.exe", "-pen");

Upvotes: 2

Related Questions