API 参考类触摸屏在此页面上触摸屏Touchscreen 类在相对于视口左上角的主框架 CSS 像素中操作。触摸屏上的方法只能在已使用 hasTouch 设置为 true 初始化的浏览器上下文中使用。 方法 TapAsync 在 v1.9 之前添加 touchscreen.TapAsync 分派一个 touchstart 和 touchend 事件,在位置 (x,y) 使用单个触摸。 注意如果浏览器上下文的 HasTouch 选项为 false,则 Page.TapAsync() 方法将抛出异常。 用法 await Touchscreen.TapAsync(x, y); 参数 x [浮点数]# 相对于主框架视口以 CSS 像素为单位的 X 坐标。 y [浮点数]# 相对于主框架视口以 CSS 像素为单位的 Y 坐标。 返回值 void#