<< 点击显示目录 >> 主页 mappView帮助助手 > mapp View帮助信息 > 工程 > 事件和行动 > 事件 > 事件 客户端系统 > Event DialogClosed事件 对话框关闭 |
该事件用于响应对话框的关闭。
Attribute |
说明 |
type |
定义了值的来源。 clientSystem.Event |
event |
对话框关闭(DialogClosed) |
当此事件发生在 事件处理程序的条件中时,可以使用以下参数 。
Argument |
说明 |
dialogId |
对话框ID。 |
horizontalPos |
对话框的水平位置,以像素为单位,例如 "0px"。 |
verticalPos |
对话框的垂直位置,以像素为单位,如 "10px"。 |
该事件在对话框被关闭后被触发。
例子
<EventBinding>
<Source xsi:type="clientSystem.Event" event="DialogClosed" />
<EventHandler condition="dialogId="Dialog1"">
<Action>
<Target xsi:type="opcUa.NodeAction" refId="::prg1:var1" >
<Method xsi:type="opcUa.NodeAction.SetValueNumber" value="42" />
</Target>
</Action>
</EventHandler>
</EventBinding>