如何获取wpf按钮的父级
我想要得到 Button 的父母的父母。我能够让父级使用
Dim tempB As Button = CType(sender, Button)
Dim g1 As Grid = CType(tempB.Parent, Grid)
(在我的点击处理程序中)。但如果我这样做,
Dim g2 As New Object
g2 = g1.Parent
tempB.Content = g2.GetType
我会得到一个 NullReference Exception
I want to get a Button's parent's parent. I am able to get the parent using
Dim tempB As Button = CType(sender, Button)
Dim g1 As Grid = CType(tempB.Parent, Grid)
(in my click handler). But if I do
Dim g2 As New Object
g2 = g1.Parent
tempB.Content = g2.GetType
I get a NullReference Exception
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是一个简单的 C# 代码片段,它将为您提供单击按钮的所有父级:
Here is a simple C# snippet that will give you all the parents of a clicked Button: