У меня есть объект UIElement
, как я могу удалить его родителя?
Я видел, что нет установщика для родительского свойства UIElement
.
Любые предложения будут полезны.
РЕДАКТИРОВАТЬ:
protected FrameworkElement Content
{
get { return this.content; }
set
{
if ((this.content != null) && (this.Children.Contains(this.content)
== true))
this.Children.Remove(this.content);
this.content = value;
if ((this.content != null) && (this.Children.Contains(this.content)
== false))
{
this.Children.Add(this.content); // here i get error Element is already an child of another
}
this.InvalidateMeasure();
this.InvalidateArrange();
}
}