如何将事件处理程序绑定到特定对象的方法?

时间:2013-11-08 11:39:57

标签: c# wpf listview sorting binding

<ListView Name="ProductListView" Background="#AAFFFFFF" Margin="10,5,10,10" VerticalAlignment="Stretch" DataContext="product">
<ListView.Resources>
    <Style TargetType="{x:Type GridViewColumnHeader}">
        <EventSetter Event="Click" Handler="Sort"/> <!-- Sort is method of product object-->
    </Style>

“product”是具有列表视图项目的对象 我写了排序功能。
我想知道如何具体的“排序”
处理Click事件的处理程序..?

谢谢