Test in Simulator mode, the GridView wont scroll vertically even I have 100 records to show, it show a vertical bar but can not be used to scroll. What I need to do to make it scrolling vertically or horzontally?
Your help is appreciated for this problem. Thanks
<GridView x:Name="CustomersGridView"
Grid.Row="1"
Margin="37,174,73,89"
Foreground="White"
SelectionMode="Single"
IsSwipeEnabled="True"
IsItemClickEnabled="True"
ItemsSource="{Binding Mode=OneWay, Source={StaticResource CustomersViewSource}}"
ItemTemplate="{StaticResource CustomerTemplate}"
ItemClick="CustomersGridView_ItemClick"
// Horizontal or vertical here:
ScrollViewer.HorizontalScrollBarVisibility="Auto"
SelectionChanged="CustomersGridView_SelectionChanged">
<GridView.ItemsPanel>
<ItemsPanelTemplate>
<WrapGrid Orientation="Horizontal" />
</ItemsPanelTemplate>
</GridView.ItemsPanel>
</GridView>