Сортировка не работает для DataGrid, когда она связана с DataPager
У меня проблема с функцией сортировки в DataGrid
где пейджинг осуществляется DataPager
, мой DataPager
управляющие страницы данных в несколько страниц в соответствии с количеством строк, определенных для каждой страницы.
Вот мой код XAML:
<UserControl x:Class="XXXXX.ViewData"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" xmlns:dtContr="http://schemas.microsoft.com/wpf/2008/toolkit"
xmlns:xtndrCntrl="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit/extended"
xmlns:localControls="clr-namespace:XXXXXX.Controls"
d:DesignHeight="550" d:DesignWidth="750" Loaded="ViewData_Loaded">
<Grid Background="#FAF9F9">
<Grid.RowDefinitions>
<RowDefinition Height="35"/>
<RowDefinition Height="*"/>
<RowDefinition Height="65"/>
</Grid.RowDefinitions>
<StackPanel Height="35" HorizontalAlignment="Left" Name="stackPanel1" VerticalAlignment="Top" Width="Auto" Grid.Row="0" Orientation="Horizontal" Margin="10,0">
</StackPanel>
<StackPanel Orientation="Vertical" Grid.Row="1">
<dtContr:DataGrid AutoGenerateColumns="False" HorizontalAlignment="Left" Height="340" Width="750"
Margin="10,10,10,0" Name="grvViewData" VerticalAlignment="Top" IsReadOnly="True"
CanUserResizeColumns="True"
ItemsSource="{Binding ElementName=ReportsPager,Path=CurrentPage}">
<dtContr:DataGrid.Columns>
<localControls:QDDataGridColumn Header="Date" HeaderResourceID="lblDate" Width="100" Binding="{Binding Path=Date_Time}">
</localControls:QDDataGridColumn>
<localControls:QDDataGridColumn Header="Name" HeaderResourceID="lblName" Width="75" Binding="{Binding Path=Name}">
</localControls:QDDataGridColumn>
</dtContr:DataGrid.Columns>
</dtContr:DataGrid>
<localControls:DataPager x:Name="ReportsPager" ItemsPerPage="10" Margin="0,10,10,10"
HorizontalAlignment="Right"
ItemsSource="{Binding Source={StaticResource ReportCollection}}" />
</StackPanel>
<Button Content="Export To Excel" Grid.Row="3" Height="35" HorizontalAlignment="Right" Margin="10,15" Name="btnExportToExcel" VerticalAlignment="Top" Width="175" Click="btnExportToExcel_Click" />
<Button Content="Create Report" Grid.Row="3" Height="35" HorizontalAlignment="Right" Margin="10,15" Name="btnCreateReport" VerticalAlignment="Top" Width="175" Visibility="Collapsed" Click="btnCreateReport_Click"/>
</Grid>
</UserControl>
Чтобы проинформировать вас о приведенном выше коде: у меня есть DataGrid
где я связываю ItemSource
на "ReportsPager" и зарегистрировал событие сортировки. В следующем разделе у меня есть DataPager
- "ReportsPager" - и ItemSource
привязан к "lstReprotView". Мое намерение здесь состоит в том, чтобы подготовить lstReportveiw
и DataPager
заботится о публикации данных в DataGrid
, Затем, когда я нажимаю на один из столбцов заголовка, он будет отсортирован автоматически.
К сожалению, это не работает для меня. Так что в GridView.Sorting
Событие Я явно сортирую "lstReprotView", но по-прежнему нет результата.
void grvViewData_Sorting(object sender,Microsoft.Windows.Controls.DataGridSortingEventArgs e)
{
//Assume i sorted the lstReportView data explicitly prior to this line of code.
ReportsPager.ItemsSource = lstReportView;
//Validation puropose
ObservableCollection<Object> lstReportViews = (ObservableCollection<Object>)ReportsPager.ItemsSource;
}
Может ли кто-нибудь, пожалуйста, помогите мне, где я делаю ошибку. С отладкой, последней строкой при проверке, я мог видеть отсортированные данные, но когда они публикуются, они не показывают данные должным образом. Я нашел эту проблему, но у меня недостаточно информации для ее решения. Заранее спасибо.
С уважением, Шива.
1 ответ
Вы можете использовать CollectionViewSource, например так:
<CollectionViewSource Source="{Binding lstReportView}" x:Key="ReportCollection" >
<CollectionViewSource.SortDescriptions>
<compMod:SortDescription PropertyName="PropertyIWantToSortOn" Direction="Ascending" />
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
А затем привяжите свой DataGrid (или, я полагаю, Pager, не использовав его) следующим образом:
<sdk:DataGrid ItemsSource="{Binding Source={StaticResource ReportCollection}}" SelectedItem="{Binding SelectedReport, Mode=TwoWay}" etc etc>