0

I have a Create.xaml view in wpf with mvvm , that contains text boxes and combo boxes .

When i click on TAB key middle of the text boxes are not focused (or selected), and also not working for SHIFT + TAB .

<Grid  Grid.Row="2" Grid.Column="2"  Style="{StaticResource EntryFieldStyle}" Margin="0,9,0,2">
    <TextBox x:Name="TxtBxInventory1"  Margin="4,0,0,0"  tabIndex="0"/>
</Grid>

I have tried with tab index but I am not getting the solution for that. Could you please give me the solution.

Taterhead
  • 5,763
  • 4
  • 31
  • 40

1 Answers1

0

Use IsTabStop property for the TextBox to be included in tab navigation.

Set IsTabStop = True for your TextBox.

AnjumSKhan
  • 9,647
  • 1
  • 26
  • 38