WPF 3.5
I have a ListView for which the XAML looks like so
<ListView Name="ListView_FileAttachments">
<ListView.View>
<GridView>
<GridView.Columns>
<GridViewColumn Header="Type"></GridViewColumn>
<GridViewColumn Header="File Name"></GridViewColumn>
<GridViewColumn Header="Security">
<GridViewColumn.CellTemplate>
<DataTemplate>
<Button Content="Set Restrictions" Click="Restrictions_Clicked"></Button>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView.Columns>
</GridView>
</ListView.View>
</ListView>
When I Click on a button in an individual cell how do I tell which button was clicked ( to be clear though I am interested in the ListView Item that this button belongs to because what I really want to do is retrieve the value of another column in that row )