今天我决定最终尝试虚拟化TreeView。要做到这一点,需要绑定。所以我决定进行2项测试 - 基于类型+虚拟化的HierarchicalDataTemplate。
我为一些数据创建了一个基类。从基类创建了2个派生类。制作2个HierarchicalDataTemplate(每个派生类1个)以获得不同的节点格式。并运行2种类型的10k节点的人口。
类:
public class ListItem_Generic
{
public string Name { get; protected set; }
public ListItem_Generic(string Name = "") { this.Name = Name; }
}
public class ListItem_Single : ListItem_Generic
{
public ListItem_Single(string Name = "") : base(Name) { }
}
public class ListItem_Multi : ListItem_Generic
{
public List<ListItem_Generic> Items { get; protected set; }
public ListItem_Multi(string Name = "", List<ListItem_Generic> Items = null)
: base(Name)
{
if (Items == null)
this.Items = new List<ListItem_Generic>();
else
this.Items = new List<ListItem_Generic>(Items);
}
}
生成带有一些孩子的10k第一级节点,绑定:
public MainWindow()
{
InitializeComponent();
// Create a list of sample items and populate them
var lst = new List<ListItem_Generic>();
int MaxHeaders = 10000;
var rnd = new Random();
// Now generate 10 000 records. First select random amount of headers
int HeadersCount = rnd.Next(MaxHeaders);
for (int i = 0; i < HeadersCount; i++)
{
var Childrencount = rnd.Next(100);
var children = new List<ListItem_Generic>();
for (int j = 0; j < Childrencount; j++)
children.Add(new ListItem_Single("Child #"+j+" of parent #"+i));
lst.Add(new ListItem_Multi("Header #" + i + " (" + Childrencount + ")", children));
}
for (int i = 0; i < MaxHeaders - HeadersCount; i++)
lst.Add(new ListItem_Single("Line #" + i));
// Bind lstView to lst
lstView.ItemsSource = lst;
lstView.UpdateLayout();
}
使用HierarchicalDataTemplates的XAML:
<Window x:Class="Test_DataTemplates.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:loc="clr-namespace:Test_DataTemplates"
Title="MainWindow" Height="350" Width="525">
<Grid>
<TreeView Name="lstView" VirtualizingPanel.IsVirtualizing="True">
<TreeView.Resources>
<HierarchicalDataTemplate DataType="{x:Type loc:ListItem_Multi}" ItemsSource="{Binding Path=Items}">
<Border Background="RosyBrown">
<TextBlock Text="{Binding Path=Name}" Foreground="White" FontWeight="Bold"/>
</Border>
</HierarchicalDataTemplate>
<HierarchicalDataTemplate DataType="{x:Type loc:ListItem_Single}">
<TextBlock Text="{Binding Path=Name}"/>
</HierarchicalDataTemplate>
</TreeView.Resources>
</TreeView>
</Grid>
</Window>
一切都很好:
然而,当滚动到标题#1000并扩展它时 - 滚动位置会跳转到其他地方,使得扩展节点及其子节点不可见。
我做错了什么?有什么方法可以解决这个问题吗?
更新:删除虚拟化也会删除滚动错误。
答案 0 :(得分:1)
在C#WPF中存在很多树虚拟化问题(包括主要问题,只有第一级虚拟化) - 我无法找到合适的修复方法。微软接受了一个错误报告并回答说,滚动问题将在未来的一个版本中修复。
至于我个人的最终解决方案 - 我已经切换到自己的ListTreeView实现,即使用List和模拟树。这解决了虚拟化和滚动行为的所有问题。唯一的问题是 - 折叠树节点后删除许多项目。我必须实现一个检查,如果它更容易/更快地重新创建一个新的列表而不是逐个删除项目。
答案 1 :(得分:0)
尝试关闭(不开启)回收
VirtualizingStackPanel.VirtualizationMode="Standard"
优化文章指的是打开它
答案 2 :(得分:0)
如果有人能够在他们的环境中对此进行测试并确认问题,我将不胜感激。 此外,玩一点点发现另一个奇怪的行为:
接下来运行程序:
重新运行程序(实验纯度)
扩展其中一个第一个节点看起来是一种解决方法。
答案 3 :(得分:0)
我在MSDN上找到了解决方案。显然它与默认的TreeView模板有关。以下修复了滚动条闪烁并在快速滚动时阻止随机节点扩展。
<Style x:Key="{x:Type TreeView}" TargetType="{x:Type TreeView}">
<Setter Property="TreeView.Background" Value="Transparent"/>
<Setter Property="VirtualizingStackPanel.IsVirtualizing" Value="True"/>
<Setter Property="VirtualizingStackPanel.VirtualizationMode" Value="Recycling"/>
<Setter Property="TreeView.SnapsToDevicePixels" Value="True" />
<Setter Property="TreeView.OverridesDefaultStyle" Value="True" />
<Setter Property="ItemsControl.ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<VirtualizingStackPanel IsItemsHost="True"/>
</ItemsPanelTemplate>
</Setter.Value>
</Setter>
<Setter Property="TreeView.Template">
<Setter.Value>
<ControlTemplate TargetType="TreeView">
<ScrollViewer Focusable="False" CanContentScroll="True" Padding="4">
<ItemsPresenter HorizontalAlignment="Stretch"/>
</ScrollViewer>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
我试着快速滚动,似乎不再注意到问题了。令人敬畏的是,您甚至不必废除虚拟化。
答案 4 :(得分:0)
根据https://msdn.microsoft.com/en-us/library/system.windows.controls.scrollunit(v=vs.110).aspx(ScrollUnit Enumeration),有两个可能的值。默认似乎是'Pixel',这会导致滚动问题。如下所示切换到“项目”可解决问题:
VirtualizingStackPanel.ScrollUnit = “项”