I have a ListBox in my xaml file which looks like this:
<ListBox Name="collateralPledgedListbox"
Style="{StaticResource USB_ListBox}"
Margin="0,0,5,39" Width="Auto"
ItemsPanel="{StaticResource USB_ListBox_ItemPlacement}"
TabNavigation="Local"
ItemContainerStyle="{StaticResource USB_ListBoxContainer}"
ItemsSource="{Binding Model.CollateralPledgedByMarriedIndividuals, Mode=TwoWay}"
ItemTemplate="{StaticResource USBcollateralColSumColInfoDataTemplate}"
ScrollViewer.HorizontalScrollBarVisibility="Hidden">
</ListBox>
This ListBox shows a vertical scroll bar when there are number of rows exceed the provided space. I am not able to show the currently selected row to the user while tabbing through the controls within the ListBox.
I am using C# as my language. Any help on this would be appreciated.