标签: c# image silverlight xaml uielement
是否可以在C#中向UIElement添加父级?我知道可以和这样的孩子一起做这件事:
UIElement
(AssociatedObject as Grid).Children.Add(imageObject);
我找不到设置UIElement的父级的任何方法,也无法在Google上找到任何内容。
答案 0 :(得分:2)
不,不是。 UIElement课程实际上并不支持添加父母或子女。
您的示例使用Grid类(事实上,它允许您添加子级)。您必须使用父级子集合将子元素添加到父元素(假设父级是允许添加子级的类型)。
Grid