Browse Source

Handle requesting children of unrealized containers.

pull/3917/head
Steven Kirk 6 years ago
parent
commit
b1d34acdc6
  1. 2
      src/Avalonia.Controls/TreeView.cs

2
src/Avalonia.Controls/TreeView.cs

@ -395,7 +395,7 @@ namespace Avalonia.Controls
private void OnSelectionModelChildrenRequested(object sender, SelectionModelChildrenRequestedEventArgs e)
{
var container = ItemContainerGenerator.Index.ContainerFromItem(e.Source) as ItemsControl;
e.Children = container.GetObservable(ItemsProperty);
e.Children = container?.GetObservable(ItemsProperty);
}
private TreeViewItem GetContainerInDirection(

Loading…
Cancel
Save