如何判断我正在使用的设备是否有触摸屏?我在想类似的事情:
SystemParameters.IsPenWindows
foreach (TabletDevice tabletDevice in Tablet.TabletDevices)
{
if(tabletDevice.Type == TabletDeviceType.Touch)
return true;
}
你也可以参考这个: Is it possible to let my c# wpf program know if the user has a touchscreen or not?