MVVM 分页和排序

问题描述 投票:0回答:2

我正在努力寻找一个适当的解决方案来实现符合 MVVM P&P 的 WPF DataGrid 的排序和分页。

以下示例说明了一种遵循 MVVM 实践的实现分页的有效方法,但是排序的自定义实现(实现分页后需要)并不遵循 MVVM:

http://www.eggheadcafe.com/tutorials/aspnet/8a2ea78b-f1e3-45b4-93ef-32b2d802ae17/wpf-datagrid-custom-pagin.aspx

我目前有一个 DataGrid 绑定到 CollectionViewSource(在 XAML 中使用 GroupDescriptions 和 SortDescriptions 定义),并绑定到我的 ViewModel 中的 ObservableCollection。一旦通过限制 DataGrid 每页获取的项目数来实现分页,它就会破坏 CollectionViewSource 中定义的排序,因为它只对项目的子集进行排序。 MVVM下实现分页和排序的最佳方法是什么?

谢谢,

亚伦

wpf sorting mvvm pagination datagrid
2个回答
17
投票

前几天我写了一个

PagingController
类来帮助分页,所以在这里:

您将不得不稍微清理一下源代码,因为它们会使用一些 MS Code 合约,它们引用了 Prism 等中的一些(非常基本的)实用工具。

使用示例(代码隐藏 -

ViewModel.cs
):

private const int PageSize = 20;

private static readonly SortDescription DefaultSortOrder = new SortDescription("Id", ListSortDirection.Ascending);

private readonly ObservableCollection<Reservation> reservations = new ObservableCollection<Reservation>();

private readonly CollectionViewSource reservationsViewSource = new CollectionViewSource();

public ViewModel()
{
    this.reservationsViewSource.Source = this.reservations;

    var sortDescriptions = (INotifyCollectionChanged)this.reservationsViewSource.View.SortDescriptions;
    sortDescriptions.CollectionChanged += this.OnSortOrderChanged;

    // The 5000 here is the total number of reservations
    this.Pager = new PagingController(5000, PageSize);
    this.Pager.CurrentPageChanged += (s, e) => this.UpdateData();

    this.UpdateData();

}

public PagingController Pager { get; private set; }

public ICollectionView Reservations
{
    get { return this.reservationsViewSource.View; }
}

private void UpdateData()
{
    var currentSort = this.reservationsViewSource.View.SortDescriptions.DefaultIfEmpty(DefaultSortOrder).ToArray();

    // This is the "fetch the data" method, the implementation of which
    // does not directly interest us for this example.
    var data = this.crsService.GetReservations(this.Pager.CurrentPageStartIndex, this.Pager.PageSize, currentSort);
    this.reservations.Clear();
    this.reservations.AddRange(data);
}

private void OnSortOrderChanged(object sender, NotifyCollectionChangedEventArgs e)
{
    if (e.Action == NotifyCollectionChangedAction.Add) {
        this.UpdateData();
    }
}

使用示例(XAML -

View.xaml
):

<DataGrid ... ItemSource="{Binding Reservations}" />

<!-- all the rest is UI to interact with the pager -->
<StackPanel>
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="4">
        <StackPanel.Resources>
            <Style TargetType="{x:Type Button}">
                <Setter Property="FontFamily" Value="Webdings" />
                <Setter Property="Width" Value="60" />
                <Setter Property="Margin" Value="4,0,4,0" />
            </Style>
            <Style TargetType="{x:Type TextBlock}">
                <Setter Property="Margin" Value="4,0,4,0" />
                <Setter Property="VerticalAlignment" Value="Center" />
            </Style>
            <Style TargetType="{x:Type TextBox}">
                <Setter Property="Margin" Value="4,0,4,0" />
                <Setter Property="Width" Value="40" />
            </Style>
        </StackPanel.Resources>
        <Button Content="9" Command="{Binding Path=Pager.GotoFirstPageCommand}" />
        <Button Content="3" Command="{Binding Path=Pager.GotoPreviousPageCommand}" />
        <TextBlock Text="Page" />
        <TextBox Text="{Binding Path=Pager.CurrentPage, ValidatesOnExceptions=True}" />
        <TextBlock Text="{Binding Path=Pager.PageCount, StringFormat=of {0}}" />
        <Button Content="4" Command="{Binding Path=Pager.GotoNextPageCommand}" />
        <Button Content=":" Command="{Binding Path=Pager.GotoLastPageCommand}" />
    </StackPanel>
    <ScrollBar Orientation="Horizontal" Minimum="1" Maximum="{Binding Path=Pager.PageCount}" Value="{Binding Path=Pager.CurrentPage}"/>
</StackPanel>

简短说明:

如您所见,ViewModel 并没有真正做太多事情。它保留代表当前页面的项目集合,并向视图公开

CollectionView
(用于数据绑定)和
PagingController
。然后它所做的就是每次
CollectionView
指示某些内容发生变化时更新集合中的数据项(因此在
PagingController
中)。当然,这意味着您需要一个方法,在给定起始索引、页面大小和
SortDescription[]
的情况下,返回这些参数描述的数据切片。这是您业务逻辑的一部分,我在这里没有包含相关代码。

在 XAML 方面,所有工作都是通过绑定到

PagingController
来完成的。我在这里公开了完整的功能(绑定到第一个/上一个/下一个/最后一个命令的按钮,将
TextBox
直接绑定到
CurrentPage
,以及将
ScrollBar
绑定到
CurrentPage
)。通常您不会同时使用所有这些。


5
投票

您应该在 ViewModel 中使用

ListCollectionView
类型的集合属性,并将 Grid 绑定到它。这样,CollectionView 定义就不会位于 View 中,而是位于 ViewModel(它所属的位置)中,这将帮助您在 ViewModel 中轻松完成所需的所有操作(无论是分页、排序还是过滤)

© www.soinside.com 2019 - 2024. All rights reserved.