Virtualization should work as simply as this, but it does not. Replace MultiSelectTreeView with TreeView in the code below and virtualization works seamlessly. What would it take to make this work? Thanks!
<Controls:MultiSelectTreeView
x:Name="_treeView"
Grid.Row="2"
ItemsSource="{Binding VariableTree.Nodes}"
VirtualizingStackPanel.IsVirtualizing="True">
<Controls:MultiSelectTreeView.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel />
</ItemsPanelTemplate>
</Controls:MultiSelectTreeView.ItemsPanel>
</Controls:MultiSelectTreeView>
Virtualization should work as simply as this, but it does not. Replace MultiSelectTreeView with TreeView in the code below and virtualization works seamlessly. What would it take to make this work? Thanks!