您好,登錄后才能下訂單哦!
這篇文章主要介紹C#中方向鍵與回車鍵切換控件焦點的方法有哪些,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
方法一:笨方法,需為每個控件單獨注冊事件處理
以TextBox為例,代碼如下:
1 private void textbox_KeyDown(object sender, KeyEventArgs e) 2 { 3 if (e.KeyCode == Keys.Down || e.KeyCode == Keys.Enter) 4 { 5 e.SuppressKeyPress = true; 6 System.Windows.Forms.SendKeys.Send("{Tab}"); 7 } 8 else if (e.KeyCode == Keys.Up) 9 { 10 e.SuppressKeyPress = true; 11 System.Windows.Forms.SendKeys.Send("+{Tab}"); 12 } 13 }
方法二:簡單方法,無需為每個控件單獨注冊事件處理,僅需在窗體類上加入如下代碼:
1 //上、下方向鍵,及回車鍵切換控件焦點 2 protected override bool ProcessCmdKey(ref Message msg, Keys keyData) 3 { 4 Keys key = (keyData & Keys.KeyCode); 5 if (e.KeyCode == Keys.Down || e.KeyCode == Keys.Enter) 6 { 7 System.Windows.Forms.SendKeys.Send("{Tab}"); 8 return true; 9 } 10 else if (e.KeyCode == Keys.Up) 11 { 12 System.Windows.Forms.SendKeys.Send("+{Tab}");13 return true; 14 } 15 return base.ProcessCmdKey(ref msg, keyData);16 }
到此,切換控件焦點的功能已實現,現在有個新的需求,窗體界面上有兩個ComboBox控件cmbMeas和cmbRemark,我希望在這兩個控件上Enter回車時提交,而不是切換焦點,那怎么辦呢?那就需要判斷當前擁有焦點的控件是不是cmbMeas或cmbRemark,上面的代碼需要稍微改動下,具體代碼如下:
1 //API聲明:獲取當前焦點控件句柄 2 [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.Winapi)] 3 internal static extern IntPtr GetFocus(); 4 5 //獲取當前擁有焦點的控件 6 private Control GetFocusedControl() 7 { 8 Control focusedControl = null; 9 // To get hold of the focused control:10 IntPtr focusedHandle = GetFocus();11 if (focusedHandle != IntPtr.Zero)12 //focusedControl = Control.FromHandle(focusedHandle);13 focusedControl = Control.FromChildHandle(focusedHandle);14 return focusedControl ;15 }16 17 protected override bool ProcessCmdKey(ref Message msg, Keys keyData)18 {19 Keys key = (keyData & Keys.KeyCode);20 Control ctrl = GetFocusedControl();21 if (e.KeyCode == Keys.Down || (key == Keys.Enter && ctrl.Name != "cmbMeas" && ctrl.Name != "cmbRemark")) 22 { 23 System.Windows.Forms.SendKeys.Send("{Tab}"); 24 return true; 25 } 26 else if (e.KeyCode == Keys.Up) 27 { 28 System.Windows.Forms.SendKeys.Send("+{Tab}");29 return true; 30 } 31 return base.ProcessCmdKey(ref msg, keyData);32 }
說明:
Control.FromHandle 方法
返回當前與指定句柄關聯的控件;如果找不到帶有指定句柄的控件,就返回空引用。
Control.FromChildHandle 方法
如果需要返回擁有多個句柄的控件,應使用 FromChildHandle 方法。
此方法沿著窗口句柄父級鏈向上搜索,直到找到與控件關聯的句柄。此方法比 FromHandle 方法更可靠,因為它正確返回擁有多個句柄的控件。
對于用戶自定義控件,應當使用FromChildHandle 方法。
以上是“C#中方向鍵與回車鍵切換控件焦點的方法有哪些”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。