.NET MAUI CollectionView Item Swipe
The Item Swipe is part of Telerik UI for .NET MAUI, the most comprehensive UI suite for .NET MAUI! To try it out, sign up for a free 30-day trial and kickstart your cross-platform app development today.
.NET MAUI CollectionView provides item swipe feature—when users swipe, they reveal a designated custom view with buttons, images, etc.
The image below shows how swiping can reveal buttons on the left and right:
Properties
You can use the following RadCollectionView
properties to configure the item swipe feature:
-
IsItemSwipeEnabled
(bool
)—Indicates whether the items of the CollectionView can be swiped. The default value isFalse
. -
SwipeThreshold
(double
)—Defines the length (in pixels) of the swipe gesture that is required to trigger the feature. -
StartSwipeLength
(double
)—Defines the distance that the start swiped item will be moved to and stay there until the swipe gets closed. -
EndSwipeLength
(double
)—Defines the distance that the end swiped item will be moved to and stay there until the swipe gets closed. -
StartSwipeTemplate
(DataTemplate
)—Defines the content that is visualized for a swipe-left (in vertical orientations) or a swipe-up (in horizontal orientations). -
EndSwipeTemplate
(DataTemplate
)—Defines the content that is visualized for a swipe-right (in vertical orientations) or a swipe-down (in horizontal orientations).
Methods
The following RadCollectionView
methods are related to the cell swiping feature:
- void
EndItemSwipe
(bool
isAnimated
)—Moves the swiped item to its default position.
Check below an example of the CollectionView
with StartSwipeTemplate
and EndSwipeTemplate
defined. Through the StartSwipeTemplate
users can update a property of the data item, and through the EndSwipeTemplate
users can delete an item.
1. Add sample StartSwipeTemplate
and EndSwipeTemplate
DataTemplates to the page's resources:
2. Add the CollectionView
definition with IsItemSwipeEnabled
applied:
3. Add the events defined in the DataTemplates:
4. Add the ViewModel
class:
5. Add the business object class: