| | |
| | | //设置提示信息:请输入用户密码
|
| | | Dialogform.SetTipText(Language.StringByID(R.MyInternationalizationString.uPleaseInputUserPassword));
|
| | | //确认按钮
|
| | | Dialogform.ComfirmClickEvent += (() =>
|
| | | Dialogform.ComfirmClickEvent += ((textValue) =>
|
| | | {
|
| | | if (Dialogform.InputText == string.Empty)
|
| | | if (textValue == string.Empty)
|
| | | {
|
| | | this.ShowErrorMsg(Language.StringByID(R.MyInternationalizationString.uPleaseInputUserPassword));
|
| | | return;
|
| | |
| | | Dialogform.CloseDialog();
|
| | |
|
| | | //用户密码
|
| | | pasword = Dialogform.InputText;
|
| | | pasword = textValue;
|
| | | //加密密码
|
| | | this.UserPassword = pasword;
|
| | | });
|