ListView - how to disable element turning into gray on mouse hover

99 Views Asked by At

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?

0

There are 0 best solutions below