hi,
in the onnavigated event i am creating a handful of items and binding to the ItemsGridView object
I want to know what event is associated to what i have done in image below(clicking on the row/highlight the entire row), and what ui element is it associated with?
here is the xaml
<StackPanel Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<GridView x:Name="ItemsGridView" >
<GridView.ItemTemplate>
<DataTemplate>
<Grid >
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<TextBlock Margin="10" Grid.Row="0" Grid.Column="1" VerticalAlignment="Center"
Text="Hello World"/>
<TextBlock Margin="10" Grid.Row="0" Grid.Column="2" VerticalAlignment="Center"
Text="GoodBye World"/>
</Grid>
</DataTemplate>
</GridView.ItemTemplate>
<GridView.ItemsPanel>
<ItemsPanelTemplate>
<VariableSizedWrapGrid Orientation="Vertical" />
</ItemsPanelTemplate>
</GridView.ItemsPanel>
</GridView>
</StackPanel>
