From 16604a593202f2f87adf71abd57d036fe7da3b52 Mon Sep 17 00:00:00 2001 From: 黄学彪 <hxb@hdlchina.com.cn> Date: 星期一, 18 十一月 2019 10:39:42 +0800 Subject: [PATCH] 同步了全部的代码 --- ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/CompoundControls/VerificationCodeControl.cs | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/CompoundControls/VerificationCodeControl.cs b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/CompoundControls/VerificationCodeControl.cs index 6b26088..99c76e4 100755 --- a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/CompoundControls/VerificationCodeControl.cs +++ b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/CompoundControls/VerificationCodeControl.cs @@ -84,6 +84,8 @@ txtCode.FoucsChanged += this.TxtCode_FoucsChangedEvent; //鍊兼敼鍙樹簨浠� txtCode.TextChangeEventHandler += this.TxtCode_TextChangeEvent; + //閿洏浜嬩欢 + txtCode.KeyEventAction += this.TxtCode_KeyEvent; } } @@ -172,6 +174,26 @@ } } + /// <summary> + /// 閿洏浜嬩欢 + /// </summary> + /// <param name="keysCode"></param> + private void TxtCode_KeyEvent(object sender, string keysCode) + { + if (keysCode == "Del") + { + var txtCode = (TextInputControl)sender; + if (txtCode.Text == string.Empty) + { + int index = Convert.ToInt32(txtCode.Name); + if (dicCodeControls.ContainsKey(index - 1) == true) + { + dicCodeControls[index - 1].Foucs = true; + } + } + } + } + #endregion #region 鈻� 涓�鑸柟娉昣__________________________ -- Gitblit v1.8.0