1

现在我有一个更复杂的问题。

如何获取对象的父元素。

例如:

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

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

4

1 回答 1

2

使用该Parent物业。父级作为 an 返回,Object因此您需要对其进行强制转换才能调用Viewbox's 方法。

例如:

var vbox = txtblock1.Parent as Viewbox;
if( vbox != null ) {
  // do something with vbox
}
于 2012-04-18T20:34:22.917 回答