我有一个TreeView
带有数据层次结构的 silverlight 4 控件。我希望每个级别中的项目按字母顺序排序,所以我使用 a CollectionViewSource
,但实际上并不关心排序是如何完成的。
CollectionViewSource
似乎观察事件,因此CollectionChanged
在添加和删除项目时排序工作正常。
CollectionViewSource
不会观察到被排序的属性的变化,因此当项目的文本发生变化时,不会保持排序。调用CollectionViewSource.View.Refresh()
会重新排序列表,但会丢弃选择。如何在不丢失和重新设置TreeView
选择的情况下保留选择?
示例项目:
描述:
这个项目创建了一个单层的项目树。每个项目都有一个项目编号和一个数字前缀,以使排序实际上做一些有趣的事情。这些按钮将添加一个项目、删除最旧的项目并重命名最旧的项目。
构建样本:
- 创建一个名为“SortTest”的新 Silverlight 应用程序
- 添加对 System.Windows.Controls 的引用(用于树视图)
- 更新以下文件:
要注意的行为:
- 在添加和删除项目时会保留当前选择。
Refresh()
重命名项目时(从内部调用时) ,当前选择会丢失OnRenameButtonClick()
。- 如果删除调用,
Refresh()
则在重命名项目时会保留选择,但不会重新排序列表以考虑名称更改。
主页.xaml
<UserControl x:Class="SortTest.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk">
<UserControl.Resources>
<Style x:Key="expandedStyle" TargetType="sdk:TreeViewItem">
<Setter Property="IsExpanded" Value="true" />
</Style>
<sdk:HierarchicalDataTemplate x:Key="template">
<TextBlock Text="{Binding Name}" />
</sdk:HierarchicalDataTemplate>
</UserControl.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Orientation="Horizontal">
<Button Click="OnAddButtonClick">
<TextBlock Text="Add an item" />
</Button>
<Button Click="OnRemoveButtonClick">
<TextBlock Text="Remove lowest numbered item" />
</Button>
<Button Click="OnRenameButtonClick">
<TextBlock Text="Rename lowest numbered item" />
</Button>
</StackPanel>
<sdk:TreeView Grid.Row="1" ItemsSource="{Binding Items}" ItemTemplate="{StaticResource template}" />
</Grid>
</UserControl>
MainPage.xaml.cs
using System.Windows.Controls;
using System.Collections.ObjectModel;
using System.Windows;
using System.Windows.Data;
using System.ComponentModel;
using System;
using System.Collections.Specialized;
namespace SortTest
{
public partial class MainPage : UserControl
{
private ObservableCollection<ItemViewModel> items = new ObservableCollection<ItemViewModel>();
private CollectionViewSource sortedItems = new CollectionViewSource();
private int itemNumber = 1;
public MainPage()
{
sortedItems.Source = items;
sortedItems.SortDescriptions.Add(new SortDescription("Name", ListSortDirection.Ascending));
DataContext = this;
InitializeComponent();
}
public ICollectionView Items { get { return sortedItems.View; } }
private void OnAddButtonClick(object sender, RoutedEventArgs e)
{
ItemViewModel item = new ItemViewModel();
item.Name = DateTime.Now.Millisecond.ToString("D3") + " Item #" + itemNumber;
itemNumber++;
items.Add(item);
}
private void OnRemoveButtonClick(object sender, RoutedEventArgs e)
{
if (items.Count > 0)
{
items.RemoveAt(0);
}
}
private void OnRenameButtonClick(object sender, RoutedEventArgs e)
{
if (items.Count > 0)
{
items[0].Name = DateTime.Now.Millisecond.ToString("D3") + items[0].Name.Substring(3);
sortedItems.View.Refresh();
}
}
}
public class ItemViewModel : DependencyObject
{
public static DependencyProperty NameProperty = DependencyProperty.Register("Name", typeof(string), typeof(ItemViewModel), null);
public string Name
{
get { return GetValue(NameProperty) as string; }
set { SetValue(NameProperty, value); }
}
}
}
谢谢!