Item Reordering in .NET MAUI ListView (SfListView)
13 Jul 202620 minutes to read
The SfListView allows reordering by dragging and dropping items. It supports displaying the customized view in a template while dragging the item. Drag-and-drop reordering can be enabled by setting the SfListView.DragStartMode property to OnHold. The drag-and-drop options are listed as follows:
- None: Disables drag and drop. This is the default value.
- OnHold: Allows dragging and dropping by holding the item.
- OnDragIndicator: Allows dragging and dropping by loading the DragIndicatorView within SfListView.ItemTemplate.
NOTE
The GridLayout does not support drag and drop.
The drag-and-drop behavior and limitations are summarized below:
- Items can be reordered to any position by auto-scrolling.
- Items can be reordered in the same group or in other groups but no groups can be added to other groups.
- Groups, header, and footer cannot be reordered.
To enable drag and drop using OnHold, follow the code example below.
<ContentPage xmlns:syncfusion="clr-namespace:Syncfusion.Maui.ListView;assembly=Syncfusion.Maui.ListView">
<syncfusion:SfListView x:Name="listView"
ItemsSource="{Binding ToDoList}"
DragStartMode="OnHold" />
</ContentPage>listView.DragStartMode = DragStartMode.OnHold;To enable drag and drop using both OnHold and OnDragIndicator, follow the code example below.
<ContentPage xmlns:syncfusion="clr-namespace:Syncfusion.Maui.ListView;assembly=Syncfusion.Maui.ListView">
<syncfusion:SfListView x:Name="listView"
ItemsSource="{Binding ToDoList}"
DragStartMode="OnHold, OnDragIndicator"/>
</ContentPage>listView.DragStartMode = DragStartMode.OnHold | DragStartMode.OnDragIndicator;NOTE
Reordering changes are made only in view, and not in the underlying collection. Thus, the changes will be reverted when performing sorting, grouping, or any other operation that refreshes the view. You can update the underlying collection by setting UpdateSource to
true.
Drag indicator view
To drag and drop the items by the DragIndicatorView, set the SfListView.DragStartMode property to OnDragIndicator. To display the dragging item, define any custom user interface(UI) in the DragIndicatorView.
NOTE
You must set the SfListView instance as a reference to the ListView property in
DragIndicatorView.
<ContentPage xmlns:syncfusion="clr-namespace:Syncfusion.Maui.ListView;assembly=Syncfusion.Maui.ListView">
<syncfusion:SfListView x:Name="listView"
ItemsSource="{Binding ToDoList}"
DragStartMode="OnDragIndicator">
<syncfusion:SfListView.ItemTemplate>
<DataTemplate>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="60" />
</Grid.ColumnDefinitions>
<Label x:Name="textLabel" Text="{Binding Name}" Grid.Column="0" FontSize="15" TextColor="#333333" />
<syncfusion:DragIndicatorView Grid.Column="1" ListView="{x:Reference listView}"
HorizontalOptions="Center"
VerticalOptions="Center">
<Grid Padding="10, 20, 20, 20">
<Image Source="dragindicator.png" />
</Grid>
</syncfusion:DragIndicatorView>
</Grid>
</DataTemplate>
</syncfusion:SfListView.ItemTemplate>
</syncfusion:SfListView>
</ContentPage>listView.ItemTemplate = new DataTemplate(() =>
{
var grid = new Grid();
var name = new Label
{
FontSize = 15,
VerticalOptions = LayoutOptions.Center
};
name.SetBinding(Label.TextProperty, new Binding("Name"));
var indicatorGrid = new Grid()
{
Padding = new Thickness(10, 20, 20, 20),
HorizontalOptions = LayoutOptions.End,
VerticalOptions = LayoutOptions.Center
};
var dragIndicatorView = new DragIndicatorView() { ListView = this.listView };
var indicator = new Image() { Source = "dragindicator.png" };
indicatorGrid.Children.Add(indicator);
dragIndicatorView.Content = indicatorGrid;
grid.Children.Add(name);
grid.Children.Add(dragIndicatorView);
grid.SetColumn(name, 0);
grid.SetColumn(dragIndicatorView, 1);
return grid;
});The screenshot shows the output of the reordering items by drag and drop. Download the entire source code from GitHub here.

Drag item template customization
By defining the SfListView.DragItemTemplate property of the SfListView, you can display a custom user interface (UI) when performing drag and drop operations. The template can be defined either in code or XAML.
<ContentPage xmlns:syncfusion="clr-namespace:Syncfusion.Maui.ListView;assembly=Syncfusion.Maui.ListView">
<syncfusion:SfListView x:Name="listView"
ItemsSource="{Binding ToDoList}"
DragStartMode="OnHold">
<syncfusion:SfListView.DragItemTemplate>
<DataTemplate>
<Grid Padding="10">
<Label x:Name="textLabel" Text="{Binding Name}" FontSize="15" />
</Grid>
</DataTemplate>
</syncfusion:SfListView.DragItemTemplate>
</syncfusion:SfListView>
</ContentPage>listView.DragItemTemplate = new DataTemplate(() => {
var grid = new Grid();
var name = new Label { FontSize = 15 };
name.SetBinding(Label.TextProperty, new Binding("Name"));
grid.Children.Add(name);
return grid;
});ItemDragging event
The ItemDragging event is raised while dragging and dropping the item in the SfListView. The ItemDraggingEventArgs has the following members which provide the information for the ItemDragging event:
-
Action: Returns the drag
Actionsuch as start, dragging, and drop. - Bounds: Returns the bounds of the drag item when dragging and dropping.
-
Handled: If this member is set to
true, dragging can be handled. It is applicable only ifActionisDragging. - DataItem: Returns the underlying data of the dragging item.
- NewIndex: Returns the item index of the DataSource.DisplayItems where the dragging item will be dropped.
-
OldIndex: Returns the item index of the DataSource.DisplayItems where the dragging item started. The OldIndex and NewIndex will be the same if
ActionisStart. - Position: Returns the touch position of the drag item from the screen coordinates.
Auto-scroll options
NOTE
The AutoScroller helper is exposed as a public property on
SfListView(for example,listView.AutoScroller) and is created automatically when theSfListViewis initialized. It is shared across all drag operations on that list view.
Auto-scroll margin
To adjust the auto-scroll margin, set a value to the ScrollMargin property of AutoScroller to enable auto-scrolling while dragging. The default value is 15. Auto-scrolling will be enabled when reaching the ScrollMargin from view bounds while dragging.
To disable auto-scrolling, set the value to 0 for ScrollMargin.
this.listView.AutoScroller.ScrollMargin = 20;Auto-scroll interval
To adjust the auto-scroll interval while dragging, set the Interval property of AutoScroller. The default value is 150 milliseconds.
this.listView.AutoScroller.Interval = new TimeSpan(0, 0, 0, 0, 200);Disable outside scroll
To disable auto-scroll when dragging item moves outside the SfListView while dragging, set the AllowOutsideScroll property of AutoScroller to false. The default value is true.
this.listView.AutoScroller.AllowOutsideScroll = false;Disable dragging for particular item
To disable dragging for a particular item, handle the ItemDragging event based on the conditions of the Action event argument.
You can cancel the dragging action for a particular item by setting the Cancel property of the ItemDraggingEventArgs.
private void ListView_ItemDragging(object sender, ItemDraggingEventArgs e)
{
// Disable the dragging for 4th item.
if (e.Action == DragAction.Start && e.NewIndex == 3)
e.Cancel = true;
}Cancel dropping for the dragged item
To cancel dropping for the dragged item, handle the ItemDragging event based on the conditions of the Action event argument.
You can cancel the dropping action for an item by setting the Cancel property of the ItemDraggingEventArgs.
using Syncfusion.Maui.ListView.Helpers;
private void ListView_ItemDragging(object sender, ItemDraggingEventArgs e)
{
// Cancel the dropping if the drag item is dropped out of view.
var totalExtent = this.listView.GetVisualContainer().Bounds.Bottom;
if (e.Action == DragAction.Drop && (e.Bounds.Y < -30 || e.Bounds.Bottom > totalExtent + 40))
e.Cancel = true;
}Reorder the underlying collection
The underlying collection can be reordered directly by setting the DragDropController.UpdateSource property to true. The default value is false.
<ContentPage xmlns:syncfusion="clr-namespace:Syncfusion.Maui.ListView;assembly=Syncfusion.Maui.ListView">
<syncfusion:SfListView x:Name="listView"
ItemsSource="{Binding ToDoList}"
DragStartMode="OnHold">
<syncfusion:SfListView.DragDropController>
<syncfusion:DragDropController
UpdateSource="True">
</syncfusion:DragDropController>
</syncfusion:SfListView.DragDropController>
</syncfusion:SfListView>
</ContentPage>this.listView.DragDropController.UpdateSource = true;NOTE
UpdateSourceis a boolean dependency property; in XAML useTrue/Falseand in C# usetrue/false. Setting it toTrueautomatically reflects the reorder in the underlyingObservableCollection-style source.
You can update the collection even when UpdateSource is false. For example, you can decide where the dragged item should be dropped by handling the ItemDragging event with DragAction.Drop.
using System.Collections.ObjectModel;
using Syncfusion.Maui.ListView.Helpers;
private void ListView_ItemDragging(object sender, ItemDraggingEventArgs e)
{
if (e.Action == DragAction.Drop)
{
viewModel.ToDoList.MoveTo(1, 5);
}
}NOTE
The
MoveToextension method requires the underlyingToDoListto be anObservableCollection<T>(or a type that supportsMove). WireBindingContextto the ViewModel soviewModel.ToDoListis in scope. TheMoveTomethod is provided by Syncfusion.Maui.ListView.Helpers.CollectionExtensions and has the signaturevoid MoveTo(this ObservableCollection<T> source, int oldIndex, int newIndex). It moves the item atoldIndextonewIndexand raises the appropriateCollectionChangednotification.
NOTE
Underlying collection will not be updated when any data operation like sorting or grouping is performed. The order will be maintained only in the
DisplayItemsof the data source. When an item is dragged and dropped between groups, the property used for grouping is updated in the data object.
Delete item when dropping in particular view
To delete the dragged item when dropping into a view, handle the ItemDragging event based on the conditions of the Action and Bounds event arguments.
To delete the dragged item from the underlying collection when dropping into the delete icon, follow the code example. The delete view is shown or hidden by the IsVisible property in the ViewModel when a drag starts and ends.
<ContentPage xmlns:syncfusion="clr-namespace:Syncfusion.Maui.ListView;assembly=Syncfusion.Maui.ListView">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="40" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid BackgroundColor="#2196F3">
<Label Text="To Do Items" x:Name="headerLabel" TextColor="White" FontAttributes="Bold" VerticalOptions="Center" HorizontalOptions="Center" />
<StackLayout x:Name="stackLayout" IsVisible="{Binding IsDeleteVisible}" Orientation="Horizontal" VerticalOptions="Center" HorizontalOptions="Center">
<Image Source="delete.png" HeightRequest="30" WidthRequest="30" VerticalOptions="Center" HorizontalOptions="Center" />
<Label x:Name="deleteLabel" Text="Delete Item" FontAttributes="Bold" TextColor="White" VerticalTextAlignment="Center" />
</StackLayout>
</Grid>
<syncfusion:SfListView x:Name="listView" Grid.Row="1"
ItemsSource="{Binding ToDoList}"
DragStartMode="OnHold"/>
</Grid>
</ContentPage>public partial class MainPage : ContentPage
{
private readonly ViewModel viewModel;
public MainPage()
{
InitializeComponent();
viewModel = new ViewModel();
this.BindingContext = viewModel;
var maingrid = new Grid();
maingrid.RowDefinitions.Add(new RowDefinition { Height = new GridLength(40) });
maingrid.RowDefinitions.Add(new RowDefinition { Height = new GridLength(1, GridUnitType.Star) });
var grid = new Grid();
var headerLabel = new Label()
{
Text = "To Do Items"
};
var stackLayout = new StackLayout();
stackLayout.SetBinding(StackLayout.IsVisibleProperty, new Binding("IsDeleteVisible"));
var image = new Image() { Source = "delete.png" };
var deleteLabel = new Label() { Text = "DeleteItem" };
stackLayout.Children.Add(image);
stackLayout.Children.Add(deleteLabel);
grid.Children.Add(headerLabel);
grid.Children.Add(stackLayout);
var listView = new SfListView()
{
DragStartMode = DragStartMode.OnHold,
ItemSize = 60,
SelectionMode = Syncfusion.Maui.ListView.SelectionMode.None,
BackgroundColor = Color.FromHex("#FFE8E8EC")
};
listView.ItemsSource = viewModel.ToDoList;
maingrid.Children.Add(grid);
maingrid.SetRow(grid, 0);
maingrid.Children.Add(listView);
maingrid.SetRow(listView, 1);
this.Content = maingrid;
}
}private async void ListView_ItemDragging(object sender, ItemDraggingEventArgs e)
{
var viewModel = this.listView.BindingContext as ViewModel;
var position = new Point(e.Position.X - this.listView.Bounds.X, Math.Abs(e.Position.Y - this.listView.Bounds.Y));
if (e.Action == DragAction.Start)
{
viewModel.IsDeleteVisible = true;
}
if(e.Action == DragAction.Dragging)
{
if ((this.stackLayout.Bounds.Y < position.Y) && (this.stackLayout.Bounds.Y + this.stackLayout.Height) > position.Y)
{
this.deleteLabel.TextColor = Colors.Red;
}
else
this.deleteLabel.TextColor = Colors.White;
}
if(e.Action == DragAction.Drop)
{
if ((this.stackLayout.Bounds.Y < position.Y) && (this.stackLayout.Bounds.Y + this.stackLayout.Height) > position.Y)
{
await Task.Delay(100);
viewModel.ToDoList.Remove(e.DataItem as ToDoItem);
}
this.deleteLabel.TextColor = Colors.White;
viewModel.IsDeleteVisible = false;
}
}Download the sample from GitHub here.

Drag-and-drop customization
Adjust drag item axis
To adjust the X and Y coordinates of the drag item while dragging, you can set the CanAdjustDragItemAxis property of the DragDropController class to true. By default, the Y coordinates can be adjusted if the SfListView.Orientation is set to Vertical, and the X coordinates can be adjusted if the Orientation is set to Horizontal. The DragDropController instance is exposed by the SfListView and is not publicly settable; subclass DragDropController to customize it, then assign the custom controller via the SfListView’s DragDropController setter (or pass it to the constructor when applicable).
public class DragDropControllerExt : DragDropController
{
public DragDropControllerExt(SfListView listView) : base(listView)
{
CanAdjustDragItemAxis = true;
}
}
// Usage: construct the custom controller and assign it.
this.listView.DragDropController = new DragDropControllerExt(this.listView);