0

Do I have to manually set the TabIndex property of each control on my page, or is there a way I can select multiple controls and get either Expression Blend or Visual Studio to apply the tab index in the order I selected them.

I know this is a feature of other UI tools, but it seems Blend / VS doesn't have this option. If I have a page with many fields that could change position or add a new fields in half way it takes a lot of effort for not much gain to manually update all the tab indexes.

4

2 回答 2

2

为什么默认的 tab 顺序不够用?它是根据视觉树的顺序构建的。只需移动您的 XAML 即可创建不同的 Tab 键顺序;将 IsTabStop 设置为 false 以从选项卡顺序中删除该控件。

于 2011-09-29T02:52:34.767 回答
0

我可以通过设置IsTabStop="False"容器元素来解决这个问题。

于 2013-05-02T22:27:23.477 回答