Rav*_*ale 0

foreach (TabletDevice tabletDevice in Tablet.TabletDevices)
        {

            if(tabletDevice.Type == TabletDeviceType.Touch)
                return true;
        }
Run Code Online (Sandbox Code Playgroud)

您还可以参考这个: Is it possible to let my c# wpf program Know if the user has a touchscreen or not?