Skip to content

Instantly share code, notes, and snippets.

@paulpatarinski
Last active August 29, 2015 14:06
Show Gist options
  • Save paulpatarinski/1370053f1613f98c4dea to your computer and use it in GitHub Desktop.
Save paulpatarinski/1370053f1613f98c4dea to your computer and use it in GitHub Desktop.
XamarinForms Disable Listview Selection
//Don't allow selection
listview.ItemSelected += (object sender, SelectedItemChangedEventArgs e) => {
listview.SelectedItem = null;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment