ソースを参照

Clear templated child's parent when template detached.

Steven Kirk 7 年 前
コミット
95fe6f4cdf
1 ファイル変更1 行追加0 行削除
  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();