WPF TabIndex direction change within controls

B

Ben

I want to change the tabindex within a user control without having to
set all of the other user controls contained in the xaml main file.
Currently, the other user controls tabindex navigate how the controls
are laid out... left to right. For one user control, I would like the
tabindex to navigate top to bottom. Does anyone know if this is
possible? Currently the user controls contain textboxes, combobox,
and other common wpf controls. I appreciate the help.
 
B

Ben

I want to change the tabindex within a user control without having to
set all of the other user controls contained in the xaml main file.
Currently, the other user controls tabindex navigate how the controls
are laid out... left to right. For one user control, I would like the
tabindex to navigate top to bottom.  Does anyone know if this is
possible?  Currently the user controls contain textboxes, combobox,
and other common wpf controls. I appreciate the help.

I found that you can set the KeyboardNavigation.TabNavigation="Local"
on the WPF control and the tabindex behavior will be local to that
control only.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top