在Click Event上查找按钮的父ListViewItem

时间:2014-10-01 15:02:02

标签: c# wpf listview

我有一个按钮作为每个ListViewItem的最后一列。按下按钮时,我需要在click事件中找到按钮(发件人)父列表视图项。

我试过了:

ListViewItem itemToCancel = (sender as System.Windows.Controls.Button).Parent as ListViewItem;

DiscoverableItem itemToCancel = (sender as System.Windows.Controls.Button).Parent as DiscoverableItem;

DiscoverableItem是listview绑定的类型。我尝试了所有不同的组合,每个组合都返回null。

谢谢, Meisenman

1 个答案:

答案 0 :(得分:9)

您可以使用VisualTreeHelper获取某些元素的祖先视觉效果。当然它只支持方法GetParent,但是我们可以实现一些递归方法或者类似的东西,直到找到所需的父类型:

public T GetAncestorOfType<T>(FrameworkElement child) where T : FrameworkElement
{
    var parent = VisualTreeHelper.GetParent(child);
    if (parent != null && !(parent is T)) 
        return (T)GetAncestorOfType<T>((FrameworkElement)parent);
    return (T) parent;
}

然后您可以像这样使用该方法:

var itemToCancel = GetAncestorOfType<ListViewItem>(sender as Button);
//more check to be sure if it is not null 
//otherwise there is surely not any ListViewItem parent of the Button
if(itemToCancel != null){
   //...
}