On Windows 8 Store App I need simple list without any click/hover action. I created ListView but I dont't know how to disable element background turning into gray after mousehover. (Element has TextBox and TextBlock)
<ListView ItemsSource="{Binding MyList}" ItemTemplate="{StaticResource ElementTemplate}" VirtualizingStackPanel.VirtualizationMode="Recycling" SelectionMode="None" />
SelectionMode="None" disabled selecting, but how to turn off changing element background color to gray when mouse is over element?