這篇文章主要介紹C#中方向鍵與回車鍵切換控件焦點(diǎn)的方法有哪些,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)建站是網(wǎng)站建設(shè)技術(shù)企業(yè),為成都企業(yè)提供專業(yè)的成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作,網(wǎng)站設(shè)計(jì),網(wǎng)站制作,網(wǎng)站改版等技術(shù)服務(wù)。擁有10年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制適合企業(yè)的網(wǎng)站。10年品質(zhì),值得信賴!
方法一:笨方法,需為每個(gè)控件單獨(dú)注冊(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 }
方法二:簡(jiǎn)單方法,無需為每個(gè)控件單獨(dú)注冊(cè)事件處理,僅需在窗體類上加入如下代碼:
1 //上、下方向鍵,及回車鍵切換控件焦點(diǎn) 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 }
到此,切換控件焦點(diǎn)的功能已實(shí)現(xiàn),現(xiàn)在有個(gè)新的需求,窗體界面上有兩個(gè)ComboBox控件cmbMeas和cmbRemark,我希望在這兩個(gè)控件上Enter回車時(shí)提交,而不是切換焦點(diǎn),那怎么辦呢?那就需要判斷當(dāng)前擁有焦點(diǎn)的控件是不是cmbMeas或cmbRemark,上面的代碼需要稍微改動(dòng)下,具體代碼如下:
1 //API聲明:獲取當(dāng)前焦點(diǎn)控件句柄 2 [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.Winapi)] 3 internal static extern IntPtr GetFocus(); 4 5 //獲取當(dāng)前擁有焦點(diǎn)的控件 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 方法
返回當(dāng)前與指定句柄關(guān)聯(lián)的控件;如果找不到帶有指定句柄的控件,就返回空引用。
Control.FromChildHandle 方法
如果需要返回?fù)碛卸鄠€(gè)句柄的控件,應(yīng)使用 FromChildHandle方法。
此方法沿著窗口句柄父級(jí)鏈向上搜索,直到找到與控件關(guān)聯(lián)的句柄。此方法比 FromHandle方法更可靠,因?yàn)樗_返回?fù)碛卸鄠€(gè)句柄的控件。
對(duì)于用戶自定義控件,應(yīng)當(dāng)使用FromChildHandle 方法。
以上是“C#中方向鍵與回車鍵切換控件焦點(diǎn)的方法有哪些”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!