Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

alt text

Ctrl + PageUp/PageDown and Ctrl + Tab are default shortcuts for the TabControl. They help in moving between adjacent tabs. I would like Ctrl + PageX behaviour to work only for the Outer Tabs (tab1, tab2) and Ctrl + Tab behaviour for the Inner Tabs (tab3, tab4) when my focus is in the control (textbox here). For this I need to disable the default behaviour. Is there someway to do this? I looked at ProcessDialogKey and IsInputKey but they seem to work only with single keydata. Modifiers are not handled.

share|improve this question

2 Answers

up vote 7 down vote accepted

TabControl has unusual keyboard shortcut processing, they are reflected to the OnKeyDown() method. This was done to avoid it disturbing the keyboard handling for the controls on a tab page.

You'll have to override the method. Add a new class to your project and paste the code shown below. Compile. Drop the new control from the top of the toolbox onto your Form.

using System;
using System.Windows.Forms;

class MyTabControl : TabControl {
  protected override void OnKeyDown(KeyEventArgs e) {
    if (e.KeyData == (Keys.Tab | Keys.Control) ||
        e.KeyData == (Keys.PageDown | Keys.Control)) {
      // Don't allow tabbing beyond last page
      if (this.SelectedIndex == this.TabCount - 1) return;
    }
    base.OnKeyDown(e);
  }
}
share|improve this answer
Thanks very much. That works perfectly. – tsps Dec 25 '09 at 6:56
Note the code above doesn't disable all the tab control hotkeys: you can still use CTRL+TAB+SHIFT etc. Change the if statement to below: if ( ke.Control && (ke.KeyCode == Keys.Tab || ke.KeyCode == Keys.Next || ke.KeyCode == Keys.Prior)) return; – AZ. Jun 14 '12 at 17:04
That shortcut key tabs backwards. – Hans Passant Jun 14 '12 at 17:41

Just change tabpageX.Enabled property to false in your code when required, Then using CTRL+TAB will not be able to Select the tabpageX

CTRL+TAB at first look created a havoc on my application ,I used this to save my assets.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.