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.