Try Documentalist, my app that offers fast, offline access to 190+ programmer API docs.
Spacing between items
To remove ridiculously large spacing between items, setMinHeightto0:<ListView Grid.Row="0" Name="listView" Background="AliceBlue" HorizontalAlignment="Stretch" SelectionChanged="ListView_SelectionChanged" VerticalAlignment="Stretch" FontSize="8" VerticalContentAlignment="Top"> <ListView.ItemContainerStyle> <Style TargetType="ListViewItem"> <Setter Property="MinHeight" Value="0"/> </Style> </ListView.ItemContainerStyle> </ListView>
Other properties:Margin,Padding.