| | |
| | | string menu2 = Language.StringByID(R.MyInternationalizationString.uPasswordSettion);
|
| | | frameMenu.AddRowMenu(menu2, "Item/PswSettion.png", "Item/PswSettionSelected.png", () =>
|
| | | {
|
| | | var form = new PasswordMenuForm();
|
| | | form.AddForm();
|
| | | HdlCheckLogic.Current.CheckSecondarySecurity(() =>
|
| | | {
|
| | | //验证成功
|
| | | var form = new PasswordMenuForm();
|
| | | form.AddForm();
|
| | | },
|
| | | () =>
|
| | | {
|
| | | //请前往个人中心{0}设置二次安全验证方式
|
| | | string msg = Language.StringByID(R.MyInternationalizationString.uGotoCenterAndSetSecondAuthentication).Replace("{0}", "\r\n");
|
| | | this.ShowMassage(ShowMsgType.Confirm, msg, () =>
|
| | | {
|
| | | var form = new UserMain.SecondAuthenticationForm();
|
| | | form.AddForm();
|
| | | });
|
| | | });
|
| | | });
|
| | | };
|
| | | }
|