Browse Source

Clear templated child's parent when template detached.

Steven Kirk 7 năm trước cách đây
mục cha
commit
95fe6f4cdf
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      src/Avalonia.Controls/Primitives/TemplatedControl.cs

+ 1 - 0
src/Avalonia.Controls/Primitives/TemplatedControl.cs

@@ -247,6 +247,7 @@ namespace Avalonia.Controls.Primitives
                     foreach (var child in this.GetTemplateChildren())
                     {
                         child.SetValue(TemplatedParentProperty, null);
+                        ((ISetLogicalParent)child).SetParent(null);
                     }
 
                     VisualChildren.Clear();