| | |
| | | txtoldPsw.PlaceholderText = Language.StringByID(R.MyInternationalizationString.PleaseInputOldPsw);
|
| | | rowOldPsw.AddChidren(txtoldPsw);
|
| | | //底线
|
| | | rowOldPsw.AddBottomLine();
|
| | | var btnOldLine = rowOldPsw.AddBottomLine();
|
| | | //联动线的状态
|
| | | txtoldPsw.btnLine = btnOldLine;
|
| | | //图标
|
| | | var btnoldPswIcon = rowOldPsw.AddMostRightEmptyIcon(58, 58);
|
| | | btnoldPswIcon.UnSelectedImagePath = "Item/HidenPWD.png";
|
| | |
| | | txtNewPsw.PlaceholderText = Language.StringByID(R.MyInternationalizationString.uPleaseInputNewPassword);
|
| | | rowNewPsw.AddChidren(txtNewPsw);
|
| | | //底线
|
| | | rowNewPsw.AddBottomLine();
|
| | | var btnNewLine = rowNewPsw.AddBottomLine();
|
| | | //联动线的状态
|
| | | txtNewPsw.btnLine = btnNewLine;
|
| | | //图标
|
| | | var btnNewPswIcon = rowNewPsw.AddMostRightEmptyIcon(58, 58);
|
| | | btnNewPswIcon.UnSelectedImagePath = "Item/HidenPWD.png";
|
| | |
| | | }
|
| | | //密码已经修改,请重新登录
|
| | | string msg = Language.StringByID(R.MyInternationalizationString.uPasswordIsHadChangedAndLoginAgain);
|
| | | this.ShowMassage(ShowMsgType.Normal, msg, () =>
|
| | | this.ShowMassage(ShowMsgType.Remind, msg, () =>
|
| | | {
|
| | | //从新登录
|
| | | UserCenterLogic.ReLoginAgain(Common.Config.Instance.Account);
|