How to change the Tab key's order in C# project?

  • Thread starter Thread starter John
  • Start date Start date
The order of controls in a smart device project is defined by the reverse
order in which they are added to a form in your InitializeComponent method.
You can either manually edit this code, or install the Smartphone 2003 SDK
which adds a new option to the View menu called "Smartphone Tab Order" which
lets you reorganise the controls without having to edit the code.

Peter
 
I only want to control my controls in my form using keyboard. but i found
that the buttons out of order, i dont know why it happens?
 
Creation order is used as tab order in .NET CF SP2 and later. Adjust the
order in which you add the controls to the form to control what comes when
in the tab order, if that's what you're asking...

Paul T.
 
Back
Top