HDL_ON/UI/UI2/4-PersonalCenter/ResetAccountPassword/ResetPasswordVerificationCodePage.cs
@@ -282,7 +282,8 @@
        /// </summary>
        void LoadEvent_VerificationEntryEvent()
        {
            EventHandler<MouseEventArgs> clickEvent = (sender, e) => {
            EventHandler<MouseEventArgs> clickEvent = (sender, e) =>
            {
                et.Foucs = true;
                var etCode = et.Text;
                switch (etCode.Length)
@@ -380,7 +381,8 @@
            btnNum5.MouseUpEventHandler = clickEvent;
            btnNum6.MouseUpEventHandler = clickEvent;
            et.TextChangeEventHandler = (sender, e) => {
            et.TextChangeEventHandler = (sender, e) =>
            {
                var etCode = et.Text;
                switch (etCode.Length)
                {
@@ -567,9 +569,15 @@
        {
            btnResend.IsSelected = false;
            int time = 60;
            try
            {
            //加载Loading效果
            var waitPage = new Loading();
            bodyView.AddChidren(waitPage);
            waitPage.Start(Language.StringByID(StringId.PleaseWait));
                new Thread(() =>
            {
                try
                {
                    //2.2  获取验证码
                    ResponsePackNew resultObj;
@@ -594,6 +602,8 @@
                    }
                    else
                    {
                        new Thread(() =>
                        {
                        //发送成功,开始倒计时
                        Application.RunOnMainThread(() =>
                        {
@@ -614,16 +624,24 @@
                            btnResend.IsSelected = true;
                            btnResend.TextID = StringId.GetVerificationCode;
                        });
                    }
                })
                { IsBackground = true }.Start();
            }
                }
            catch { }
            finally
            {
            };
                    Application.RunOnMainThread(() =>
                    {
                        if (waitPage != null)
                        {
                            waitPage.RemoveFromParent();
                            waitPage = null;
                        }
                    });
                }
            })
            { IsBackground = true }.Start();
        }
        /// <summary>