在 TabControl 上选择新选项卡后,CollectionViewSource 不排序
CollectionViewSource doesn't sort after selecting new tab on TabControl
我正在对显示在 TabControl 中的 UserControl 中的数据网格进行排序。
主要 window 包含此处所示的 TabControl。
<Grid>
<TabControl x:Name="EquipTabs" ItemsSource="{Binding Equipment}" >
<TabControl.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name}" />
</DataTemplate>
</TabControl.ItemTemplate>
<TabControl.ContentTemplate>
<DataTemplate>
<ctrls:MachData DataContext="{Binding Path=MachineViewModel}" />
</DataTemplate>
</TabControl.ContentTemplate>
</TabControl>
</Grid>
当第一个选项卡被激活时,用户控件正确地对数据网格进行排序。但是,当我单击不同的选项卡或切换回原始选项卡时,数据网格不会排序。
<UserControl.Resources>
<CollectionViewSource x:Key="StatesSource" Source="{Binding States}" >
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="StartTime" Direction="Descending" />
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
</UserControl.Resources>
<Grid>
<DataGrid x:Name="dgStates" Grid.Row="2" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
ItemsSource="{Binding Source={StaticResource StatesSource}}">
</DataGrid>
</Grid>
绑定的跟踪显示如下:
Deactivate
Replace item at level 0 with {NullDataItem}
Activate with root item MachDataViewModel (hash=25379957)
At level 0 using cached accessor for MachDataViewModel.States: RuntimePropertyInfo(States)
为什么排序只发生在最初?
感谢您的帮助。
发生这种情况是因为 DataGrid
的工作方式。 DataGrid
在设置 ItemsSource
之前清除 SortDescriptions
。
如果我们可以在 DataGrid
完成 ItemsSource
之后应用我们的 SortDescriptions
,我们的 SortDescriptions
将起作用。
TargetUpdated
事件来救援,但要使用它,我们必须在我们的 Binding
.
中设置 NotifyOnTargetUpdated=True
<DataGrid
TargetUpdated="dgStates_TargetUpdated"
ItemsSource="{Binding Source={StaticResource StatesSource}, NotifyOnTargetUpdated=True}" />
代码:
private void dgStates_TargetUpdated(object sender, DataTransferEventArgs e)
{
CollectionViewSource sc = this.Resources["StatesSource"] as CollectionViewSource;
sc.SortDescriptions.Add(new System.ComponentModel.SortDescription("Name", System.ComponentModel.ListSortDirection.Ascending));
}
我正在对显示在 TabControl 中的 UserControl 中的数据网格进行排序。
主要 window 包含此处所示的 TabControl。
<Grid>
<TabControl x:Name="EquipTabs" ItemsSource="{Binding Equipment}" >
<TabControl.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name}" />
</DataTemplate>
</TabControl.ItemTemplate>
<TabControl.ContentTemplate>
<DataTemplate>
<ctrls:MachData DataContext="{Binding Path=MachineViewModel}" />
</DataTemplate>
</TabControl.ContentTemplate>
</TabControl>
</Grid>
当第一个选项卡被激活时,用户控件正确地对数据网格进行排序。但是,当我单击不同的选项卡或切换回原始选项卡时,数据网格不会排序。
<UserControl.Resources>
<CollectionViewSource x:Key="StatesSource" Source="{Binding States}" >
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="StartTime" Direction="Descending" />
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
</UserControl.Resources>
<Grid>
<DataGrid x:Name="dgStates" Grid.Row="2" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
ItemsSource="{Binding Source={StaticResource StatesSource}}">
</DataGrid>
</Grid>
绑定的跟踪显示如下:
Deactivate
Replace item at level 0 with {NullDataItem}
Activate with root item MachDataViewModel (hash=25379957)
At level 0 using cached accessor for MachDataViewModel.States: RuntimePropertyInfo(States)
为什么排序只发生在最初?
感谢您的帮助。
发生这种情况是因为 DataGrid
的工作方式。 DataGrid
在设置 ItemsSource
之前清除 SortDescriptions
。
如果我们可以在 DataGrid
完成 ItemsSource
之后应用我们的 SortDescriptions
,我们的 SortDescriptions
将起作用。
TargetUpdated
事件来救援,但要使用它,我们必须在我们的 Binding
.
NotifyOnTargetUpdated=True
<DataGrid
TargetUpdated="dgStates_TargetUpdated"
ItemsSource="{Binding Source={StaticResource StatesSource}, NotifyOnTargetUpdated=True}" />
代码:
private void dgStates_TargetUpdated(object sender, DataTransferEventArgs e)
{
CollectionViewSource sc = this.Resources["StatesSource"] as CollectionViewSource;
sc.SortDescriptions.Add(new System.ComponentModel.SortDescription("Name", System.ComponentModel.ListSortDirection.Ascending));
}