For a Social Networking app I am working on I am trying to display comments with a ListView but I do not want it to be highlighted when clicked.
I tried using
`((ListView)sender).SelectedItem = null;` in a selected event but that still shows it being selected for a second. I need it to never show.
I also tried setting the List View to
IsEnabled="False"
also tried putting it in the View Cell but that causes the buttons and click events to not work.