S.N
S.N

Reputation: 5140

Designer - Tab order

I use to set Tab ordering through Visual Studio 2008 (winform). However, I couldn't find this option either in 2010/2012(WPF) . Is there any known rational behind this omission?

Following is a screenshot, which I was referring under VS 2008 version.

VS menu this is how the designer looks after setting tab order

Upvotes: 2

Views: 513

Answers (1)

Ignatius
Ignatius

Reputation: 1177

This tool is not currently available for WPF. I guess we need to play with KeyboardNavigation class and/or TabIndex property, either in XAML or in Properties window.

I'm not sure why this feature is not included. According to someone from Microsoft, they simply didn't have time to include this feature in the 2010 release. Another reply from the same person gave the impression that this feature might be included in future releases. (Both links are 5 years old).

However, the 2012, 2013, & 2015 versions still don't have this feature.

Upvotes: 2

Related Questions