I want to change the background colour to Transparent of a Selected item of ListView. My code :
<Grid>
<ListView IsItemClickEnabled="True"
ItemClick="ListView_ItemClick">
<ListViewItem>
<StackPanel Orientation="Horizontal">
<SymbolIcon Symbol="AlignCenter"
Foreground="White" />
<TextBlock Text="MAPS"
Foreground="White" />
</StackPanel>
</ListViewItem>
</ListView>
</Grid>
SO, what i want is change the background colour to transparent when an Item is being selected from the ListView. Is it possible in XAML with UWP?