Gestures event手势事件

<< 点击显示目录 >>

主页  mappView帮助助手 > mapp View帮助信息 > 工程 > 事件和行动 > 事件 > 事件 客户端系统 >

Gestures event手势事件

该事件用于响应手势。

定义

Attribute

描述

type

clientSystem.Event

event

SystemSwipe滑动手势触发

 

到mapp View 5.3为止。事件 "SystemSwipe "只有在 自动导航不使用时才可用 (即没有在.nav文件中配置)。在mapp View 5.4或更高版本中,SystemSwipe手势可以  通过 SystemGesture3HMI应用程序 中配置

参数

当此事件发生在  事件处理程序的条件中时,可以使用以下参数

Argument

描述

direction

手势的方向,可能的值:

fromLeft

fromRight

fromTop

fromBottom

areaId

完全执行该手势的区域的ID。

如果手势不是在同一区域开始和结束的,那么该参数为空(空字符串)。

 

行为

如果有两个手指在屏幕上滑动,该事件就会被触发。

例子

<EventBinding>
    <Source xsi:type="clientSystem.Event" event="SystemSwipe" />
        <EventHandler condition="direction=&quot;fromTop&quot;">
        <Action>
            <Target xsi:type="clientSystem.Action">
                <Method xsi:type="clientSystem.Action.OpenDialog" dialogId="helpDialog" />
            </Target>
        </Action>
    </EventHandler>
</EventBinding>

本节的主题:

Gestures