File was renamed from ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Form/SecondaryPswSecurityForm.cs |
| | |
| | | /// <summary>
|
| | | /// 二次密码验证界面
|
| | | /// </summary>
|
| | | public class SecondaryPswSecurityForm : DialogCommonForm
|
| | | public class PswSecondarySecurityForm : DialogCommonForm
|
| | | {
|
| | | #region ■ 变量声明___________________________
|
| | |
|
| | |
| | | frameBack.Width = Application.GetRealWidth(965);
|
| | | frameBack.Height = Application.GetRealHeight(1711);
|
| | | frameBack.BackgroundColor = UserCenterColor.Current.White;
|
| | | frameBack.Radius = (uint)Application.GetMinRealAverage(6);
|
| | | frameBack.Radius = 6;
|
| | | bodyFrameLayout.AddChidren(frameBack);
|
| | |
|
| | | //密码输入控件
|
| | |
| | | }
|
| | | //密码错误,请重新输入
|
| | | pswControl.SetErrorMsg(Language.StringByID(R.MyInternationalizationString.uOldPsswordIsError));
|
| | | pswControl.ResetControlInfo(i_PasswordText, false);
|
| | | return;
|
| | | }
|
| | | //重置剩余密码次数
|
| | |
| | |
|
| | | btnGesture.ButtonClickEvent += (sender, e) =>
|
| | | {
|
| | | var form = new GesturePswSecirityForm();
|
| | | var form = new PswGestureSecirityForm();
|
| | | this.AddFromAndRemoveNowForm(form, i_TouchText, i_PasswordText, i_GestureText, SuccessAction);
|
| | | };
|
| | |
|
| | |
| | | //密码验证
|
| | | if (string.IsNullOrEmpty(UserCenterResourse.Option.PswAuthentication) == false)
|
| | | {
|
| | | var form = new SecondaryPswSecurityForm();
|
| | | var form = new PswSecondarySecurityForm();
|
| | | this.AddFromAndRemoveNowForm(form, i_TouchText, i_PasswordText, i_GestureText, SuccessAction);
|
| | | }
|
| | | //手势验证
|
| | | else if (string.IsNullOrEmpty(UserCenterResourse.Option.GestureAuthentication) == false)
|
| | | {
|
| | | var form = new GesturePswSecirityForm();
|
| | | var form = new PswGestureSecirityForm();
|
| | | this.AddFromAndRemoveNowForm(form, i_TouchText, i_PasswordText, i_GestureText, SuccessAction);
|
| | | }
|
| | | else
|