In a WPF application I have a ListView:
<ListView Name="ItemSelList" ItemsSource="{Binding ItemColl}" SelectionChanged="ItemSelList_SelectionChanged">
<ListView.View>
<GridView>
<GridViewColumn Header="Date" Width="90" DisplayMemberBinding="{Binding Date}"/>
<GridViewColumn Header="Time" Width="90" DisplayMemberBinding="{Binding Time}"/>
<GridViewColumn Header="Description" Width="250" DisplayMemberBinding="{Binding Description}"/>
</GridView>
</ListView.View>
</ListView>
When running application under Windows Vista, everything is OK. When running under Windows XP - the default font size of ListView's rows is too small and rows of the ListView don't change color when user hovers with a mouse over them.
How to do so that ListView appearance under Windows XP is the same as under Vista?