<< 点击显示目录 >> 主页 mappView帮助助手 > mapp View帮助信息 > 工程 > 事件和行动 > 行动 > Widget actions |
Widget是mapp View动作的提供者。
其标识符是 Widget-Type。
以下几组动作是由Widget提供的。
关于各自小组件类型的确切名称,请参见 小组件文档。
Attribute |
说明 |
xsi:type |
小工具类型 + .行动 |
contentRefId |
内容片Content的ID |
widgetRefId |
内容文件Content Files中的小工具Widge的ID |
Attribute |
说明 |
xsi:type |
小工具类型 + .读取行动 |
contentRefId |
内容片的ID |
widgetRefId |
内容文件中的小工具的ID |
Attribute |
描述 |
xsi:type |
Widget type + .Action + .MethodName 一个小组件类型的所有现有行动都包括在 小组件文档中 。 |
.. |
其他参数在行动的描述中列出。 |
调用 部件widgets.brease.Button 的 SetEnable动作 。
<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.ContentControl 的 GetContentId动作
<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中使用的例子 。