Category / Section
How to disable the selection in Xamarin.Forms Listview?
3 mins read
Xamarin ListView supports to disable the selection. You can disable it by setting the SelectionMode property to None.
Xaml
<ContentPage xmlns:syncfusion="clr-namespace:Syncfusion.ListView.XForms;assembly=Syncfusion.SfListView.XForms"> <syncfusion:SfListView x:Name="listView" ItemsSource="{Binding ContactsInfo}" SelectionMode="None" ItemSize="70"> <syncfusion:SfListView.ItemTemplate> <DataTemplate> <Grid Padding="10"> <Label Text="{Binding ContactName}"/> </Grid> </DataTemplate> </syncfusion:SfListView.ItemTemplate> </syncfusion:SfListView> </ContentPage>
Click here to know more details about selection in listview.
Conclusion
I hope
you enjoyed learning on how to disable the selection in xamarin.forms
Listview.
You can
refer to our Xamarin.Forms Listview feature tour page to know about its
other groundbreaking feature representations and documentation, and
how to quickly get started for configuration specifications. You can also
explore our Xamarin.Forms Listview example to understand how to create and
manipulate data.
For
current customers, you can check out our components from the License and Downloads page. If
you are new to Syncfusion, you can try our 30-day free trial to
check out our other controls.
If you have any
queries or require clarifications, please let us know in the comments section
below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We
are always happy to assist you!