Tagged Questions

5
votes
2answers
2k views

WPF: How to disable tab navigation without also disabling arrow key navigation?

I have set IsTabStop to false on all controls in my window, so that when I press the Tab key, the focus doesn't move (I need the Tab key for something else). But doing this breaks arrow key navigation ...
3
votes
2answers
6k views

How to programmatically navigate WPF UI element tab stops?

Can anyone tell me how to programmatically navigate through all UI element tab stops in a WPF application? I want to start with the first tab stop sniff the corresponding element, visit the next tab ...
1
vote
1answer
865 views

Locating the first WPF tab stop

Thanks to an answer on a previous question (Previous Question), I now have a body of code that navigates WPF tab stops (shown below). It works fine except for the first tab stop. Calling ...
1
vote
0answers
382 views

WPF: Jump/navigate to next data error using programmatic keyboard focus navigation

I've built a WPF application. All of the UI elements except the Window are created in response to data binding. Thus, I set the DataContext of the Window, and voila -- a very large hierarchy of UI ...