Appearance of a WPF ListView under Windows Vista and Windows XP is not the same
- by rem
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"…