Silverlight - 元素的父级

时间:2012-04-18 20:29:16

标签: c# silverlight windows-phone-7

现在我的问题有点复杂了。

如何获取对象的父元素。

例如:

<Viewbox>
<TextBlock Name="txtblock1" />
</Viewbox>

如何通过代码(c#)获取“txtblock1”的父元素?

1 个答案:

答案 0 :(得分:2)

使用Parent属性。父级作为Object返回,因此您需要将其强制转换为能够调用Viewbox的方法。

例如:

var vbox = txtblock1.Parent as Viewbox;
if( vbox != null ) {
  // do something with vbox
}