I have the following xaml:

       <ListBox ItemsSource="{Binding Path=ItemProperties.GeneralProperties}" Grid.Row="1"
                 Margin="0" Style="{StaticResource ListBoxStyle1}">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <Grid>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="180" />
                            <ColumnDefinition Width="320" />
                        </Grid.ColumnDefinitions>

                        <TextBlock Text="{Binding Name}" Grid.Column="0" />
                        <ContentPresenter Content="{Binding Converter={StaticResource PropertyInput}}" Grid.Column="1" />
                    </Grid>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

where the ContentPresenter contains a TextBox, or a ComboBox, or a CheckBox.

To switch between the controls I need twice press the tab. Why???

I've already tried to comment the whole first column, without the TextBlock, unsuccessfully.

link|improve this question

58% accept rate
Do you have a ListBoxItemStyle applied to your ListBox? also you need to check the styles of your input controls. – Xin Nov 8 '11 at 7:28
feedback

2 Answers

I think that has to do with Focusable property --> set to False of the item that you don't want to accept tab. Hope i helped

link|improve this answer
Okay, but for which control? That is my question! – Perec May 19 '11 at 14:04
feedback

This worked for me for a DataGrid (which has a similar templating system).

<UserControl.Resources>
    <Style TargetType="{x:Type DataGridCell}">
        <Setter Property="KeyboardNavigation.IsTabStop" Value="False"/>                                          
    </Style>
</UserControl.Resources>

Then anything which is a TabStop within the datagrid would work as a tabstop, but nothing else. Sorry I'm not sure what the equivalent code is for ListBox - but you may be able to figure it out from this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.