Widget actions

<< 点击显示目录 >>

主页  mappView帮助助手 > mapp View帮助信息 > 工程 > 事件和行动 > 行动 >

Widget actions

Widget是mapp View动作的提供者。

其标识符是 Widget-Type

以下几组动作是由Widget提供的。

Widget-Typ.Action

关于各自小组件类型的确切名称,请参见 小组件文档

目标属性

Attribute

说明

xsi:type

小工具类型 + .行动

contentRefId

内容片Content的ID

widgetRefId

内容文件Content Files中的小工具Widge的ID

ReadTarget attributes

Attribute

说明

xsi:type

小工具类型 + .读取行动

contentRefId

内容片的ID

widgetRefId

内容文件中的小工具的ID

Method attributes

Attribute

描述

xsi:type

Widget type + .Action + .MethodName

一个小组件类型的所有现有行动都包括在 小组件文档中 。

..

其他参数在行动的描述中列出。

例子

调用 部件widgets.brease.ButtonSetEnable动作

 <Target xsi:type="widgets.brease.Button.Action" contentRefId="Content1" widgetRefId="Button1" >

   <Method xsi:type="widgets.brease.Button.Action.SetEnable" value="true"/>

 </Target>

The xsi:type for <Target> is widget type + .Action.

读取方法的例子

调用 部件widgets.brease.ContentControlGetContentId动作

 <ReadTarget xsi:type="widgets.brease.ContentControl.ReadAction" contentRefId="Content1" widgetRefId="ContentControl1" >

   <Method xsi:type="widgets.brease.ContentControl.Action.GetContentId" />

 </ReadTarget>

The xsi:type for <ReadTarget> is widget type + .ReadAction.

完整的例子,见 结合事件和行动

操作数operand中使用的例子 。