1
可能重複:
Detect whether a Windows 8 Store App has a touch screen查詢觸控功能的WinRT的應用
對於WinRT的應用程序,是有沒有辦法查詢,如果運行App的設備支持觸摸與否?我問,因爲我在屏幕上控制一個遊戲,如果你沒有觸摸就不需要。
可能重複:
Detect whether a Windows 8 Store App has a touch screen查詢觸控功能的WinRT的應用
對於WinRT的應用程序,是有沒有辦法查詢,如果運行App的設備支持觸摸與否?我問,因爲我在屏幕上控制一個遊戲,如果你沒有觸摸就不需要。
Windows.Devices.Input.TouchCapabilities應該這樣做。
var t = new Windows.Devices.Input.TouchCapabilities();
bool hasTouch = t.TouchPresent != 0;
還有一個sample on the dev center以及。