vote up 4 vote down star

How do I set tab ordering in WPF? I have an ItemsControl with some items expanded and some collapsed and would like to skip the collapsed ones when I'm tabbing.

Any ideas?

flag

Jesse's proposed answer is the way to go... – Román Dec 12 '08 at 10:20

3 Answers

vote up 5 vote down check

You can skip elements in the tab sequence by setting KeyboardNavigation.IsTabStop on the element in XAML.

KeyboardNavigation.IsTabStop="False"

You can setup a trigger that would toggle this property based on the expanded state.

link|flag
vote up 2 vote down

Also .NET 3.0 has a class that automatically sets the tab order and you can override this based on sections of your form.

 (new TabOrderManager(this)).SetTabOrder(TabOrderManager.TabScheme.AcrossFirst);
link|flag
vote up 1 vote down

If you want to explicitly set the tab ordering for elements in your form, the following attached property is supposed to help:

<Control KeyboardNavigation.TabIndex="0" ... />

I say "supposed to help" as I haven't found it very reliable though I probably need to read more about how it is intended to be used. I only post this half baked answer because no one else mentioned this property.

link|flag
3  
The trick is to use TabIndex with various values of KeyboardNavigation.TabNavigation in the parent element. I find myself using "Local" TabNavigation most often. :) – Greg D Mar 9 at 15:03

Your Answer

Get an OpenID
or

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