Tagged Questions

7
votes
2answers
5k views

Disable tabstop between columns in a WPF datagrid

I have a WPF Toolkit datagrid with mulitple columns. I am trying to get a behaviour where you can tab into the grid using tab, then tab out again using a single tab. E.g. I do not want to tab through ...
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
1answer
513 views

Disable TabStop on Expander

I set IsTabStop to False, but Tab still navigates to the expander. Any ideas what am I doing wrong? <Expander Header="Data" IsTabStop="False"> <Border Background="White" ...
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 ...
2
votes
1answer
2k views

AdornerDecorator and tab stop issues

I am using IDataErrorInfo to validate and indicate errors in my text boxes. I am finding I have to tab once for the text box and once for the adornerdecorator. I have an error template: ...
1
vote
1answer
94 views

WPF Disabling TabStop for ObjectDataProvider

I have a ObjectDataProvider of check boxes: <UserControl.Resources> <ObjectDataProvider x:Key="checkboxes" ObjectType="{x:Type Models:Items}" /> <DataTemplate ...
1
vote
1answer
546 views

IsTabStop=“False” has no effect on my WPF app

I'm having a really hard time with something that should be trivial. I just want to remove a few buttons from the tab order on a UserControl. I've tried adding IsTabStop="False" and ...
1
vote
1answer
843 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
379 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 ...
0
votes
1answer
47 views

What happens when the tab button is hit in a WPF rich text box?

Ok. So I get that when the tab key is hit once (with AllowTab = true), that the paragraph's textIndent property is set to 20. What I don't understand is this. When I hit the tab key twice, the ...