Search code examples
windows-8configurationwindows-store-appstap

Disable touch feedback (by code) in windows 8/store apps?


Here is what I am talking about:

enter image description here

I know this visual indication is part of the operating system and that it can be disabled in the control panel. However, I would like to know if it is possible to disable this definition in one application.


Solution

  • Thanks to the suggestion provided by Raymond Chen I was able to found the solution for this. Just add this line in your application entry point:

    PointerVisualizationSettings.GetForCurrentView().IsContactFeedbackEnabled = false;