Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tab between List elements WPF

Tags:

wpf

xaml

I have a listbox that in which every item is represented using a textbox. The thing is that I want to be able to tab between all the items in the listbox before moving to the next element in the xaml window.

The current (and normal WPF behavior) is that when I tab into the listbox, the first element is highlighted, if I tab again, then the focus moves into the textbox inside that item. If I tab once again, focus moves to the next element in the window (without going through any of the other items in the ListBox).

The behavior I want is the following: When I tab into the listbox, the first textbox obtains focus automatically (without highlighting the whole Item)*. If I tab again then the next textbox in the listbox gets focus. When I tab at the last textbox in the listbox, then focus moves to the next control.

*I already how to do this, I'm only posting it here in order to explain the complete process.

I've been looking for the solution and I've been unable to find something.

like image 205
Carlos G. Avatar asked Jul 14 '09 17:07

Carlos G.


1 Answers

This can be done in xaml, by setting the following two properties.

    <Style TargetType="ListBox" >         <Setter Property="KeyboardNavigation.TabNavigation" Value="Continue" />     </Style>      <Style TargetType="ListBoxItem">         <Setter Property="IsTabStop" Value="False" />     </Style> 

For full explanation see Derek Wilson's Blog post.

like image 191
James Avatar answered Oct 19 '22 06:10

James