2013-04-02 50 views
3

下面是我所說的:在Windows 8 /商店應用程序中禁用觸摸反饋(通過代碼)?

enter image description here

我知道這視覺指示是part of the operating system,它可以disabled in the control panel。但是,我想知道是否可以在一個應用程序中禁用此定義。

+1

好問題。我只是想問同樣的問題。我正在開發一款遊戲,並希望展示我自己的反饋反饋可視化。 –

+3

[IsContactFeedbackEnabled](http://msdn.microsoft.com/zh-cn/library/windows/apps/windows.ui.input.pointervisualizationsettings.iscontactfeedbackenabled.aspx)看起來很有希望。 –

+0

@RaymondChen你可以發表這個答案(所以我可以給你正確的觀點)。有用。非常感謝:) –

回答

3

感謝Raymond Chen提供的建議,我找到了解決方案。只需在您的應用程序入口點添加以下行:

PointerVisualizationSettings.GetForCurrentView().IsContactFeedbackEnabled = false; 
相關問題