環境:介面上有TextBox,ComboBox等控制項。
不建議把左右方向鍵都用來切換焦點,否則你在TextBox裡面改變遊標所在字元位置就不方便了。
方法一:笨方法,需為每個控制項單獨註冊事件處理
#以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#中方向鍵與回車鍵切換控制焦點的兩種方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!