How do you change the height of items in a ListView control in a Windows 10 UWP app?
For example in UWP, the following does not make the row height 20. (WPF questions might suggest this, but it does not seem to work in the UWP XAML):
<ListView x:Name="listView" IsItemClickEnabled="True">
<ListView.ItemContainerStyle>
<Style TargetType="ListViewItem">
<Setter Property="Height" Value="20" />
</Style>
</ListView.ItemContainerStyle>
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel Height="20">
<TextBlock Text="{Binding Title}" TextWrapping="NoWrap" Foreground="White" Height="20"/>
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>