Explorar el Código

Clear templated child's parent when template detached.

Steven Kirk hace 7 años
padre
commit
95fe6f4cdf
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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();