Google , ListViewItemPresenter, . ControlTemplate ListViewItem, ItemContainer ListView. - ControlTemplate:
<ListView>
<ListView.ItemContainerStyle>
<Style TargetType="ListViewItem">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<ContentPresenter/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ListView.ItemContainerStyle>
<TextBlock Text="List Item" />
...
<TextBlock Text="List Item" />
: https://blog.jonstodle.com/uwp-listview-without-highlighting-and-stuff/