5
可能重複:
Is it possible to let my c# wpf program know if the user has a touchscreen or not?有沒有辦法確定當前屏幕是否支持觸摸?
我怎樣才能知道,如果我工作的設備具有觸摸屏?我想是這樣的:
SystemParameters.IsPenWindows
可能重複:
Is it possible to let my c# wpf program know if the user has a touchscreen or not?有沒有辦法確定當前屏幕是否支持觸摸?
我怎樣才能知道,如果我工作的設備具有觸摸屏?我想是這樣的:
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?
這是最好的一個複製粘貼在重複投票的答案,只能用更少的上下文和沒有評論。 –
@FrédéricHamidi:說實話,我已經給出了參考 –
即使你提供了一個鏈接(和你的鏈接指向問題,而不是答案),抄襲來自重複問題的答案仍然不被接受。 –