Event ChangePasswordDialogClosed 事件 修改密码对话框关闭

<< 点击显示目录 >>

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

Event ChangePasswordDialogClosed 事件 修改密码对话框关闭

该事件可用于响应ChangePasswordDialog的关闭。

定义

Attribute

说明

type

定义了值的来源。

clientSystem.Event

event

ChangePasswordDialogClosed

参数

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

Argument

数据类型

描述

userName

字符串

密码已被更改的用户。如果密码修改被中止,该参数为空。

result

整数

对话框被关闭的结果。

 

1: 密码被成功更改

0: 密码修改被终止

 

行为

该事件在ChangePasswordDialog被关闭后被触发。

 

例子

    <EventBinding>
        <Source xsi:type="clientSystem.Event" event="ChangePasswordDialogClosed" />
        <EventHandler>
            <Action>
                <Target xsi:type="clientSystem.Action">
                    <Method xsi:type="clientSystem.Action.ShowMessageBox" type="OK" message="=userName" header="Password dialog closed" icon="Information" />
                </Target>
            </Action>
        </EventHandler>
    </EventBinding>