up vote 23 down vote favorite
6
share [g+] share [fb]

I have the following ListView:

<ListView Name="TrackListView">
    <ListView.View>
        <GridView>
            <GridViewColumn Header="Title" Width="100" HeaderTemplate="{StaticResource BlueHeader}" DisplayMemberBinding="{Binding Name}"/>
            <GridViewColumn Header="Artist" Width="100" HeaderTemplate="{StaticResource BlueHeader}" DisplayMemberBinding="{Binding Album.Artist.Name}" />
        </GridView>
    </ListView.View>
</ListView>

My question is, how can I attach an event to every bound item that will fire on double-clicking the item?

link|improve this question

feedback

3 Answers

up vote 32 down vote accepted

Found the solution from here: http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/3d0eaa54-09a9-4c51-8677-8e90577e7bac/


XAML:

<UserControl.Resources>
    <Style x:Key="itemstyle" TargetType="{x:Type ListViewItem}">
        <EventSetter Event="MouseDoubleClick" Handler="HandleDoubleClick" />
    </Style>
</UserControl.Resources>

<ListView Name="TrackListView" ItemContainerStyle="{StaticResource itemstyle}">
    <ListView.View>
        <GridView>
            <GridViewColumn Header="Title" Width="100" HeaderTemplate="{StaticResource BlueHeader}" DisplayMemberBinding="{Binding Name}"/>
            <GridViewColumn Header="Artist" Width="100" HeaderTemplate="{StaticResource BlueHeader}" DisplayMemberBinding="{Binding Album.Artist.Name}" />
        </GridView>
    </ListView.View>
</ListView>

C#:

protected void HandleDoubleClick(object sender, MouseButtonEventArgs e)
{
    var track = ((ListViewItem) sender).Content as Track; //Casting back to the binded Track
}
link|improve this answer
3  
If you don't need to re-use the style, you can put it directly into the <ListView.Resources/> section and remove the x:Key. – David Schmitt Jun 5 '09 at 12:24
2  
This worked for me, too. Thanks! BTW, you will probably want to stop the bubbling of the doubleClick event within your handler by setting: e.Handled = true; – Tom A Jun 23 '09 at 22:25
1  
I have a problem with this. That is, I use x:Key-less styles in the window to style all the UI elements, including the ListViews used in a custom control on that window. Putting this event-handler in the custom control's xaml disables the style applied in the window. – csuporj Dec 2 '09 at 16:06
3  
Just out of curiosity, is there another way to do this that doesn't violate MVVM? – Dave Feb 21 '10 at 7:44
1  
As a warning: using an EventSetter can lead to memory leaks if its handler's target lives longer than the ListViewItem. I spent the last few days debugging a serious memory leak (20mb at a time), only to find out that ListViewItems and their associated memory were being leaked through an EventSetter. – Zach Johnson Sep 13 '10 at 22:03
show 2 more comments
feedback

No memory leaks, works fine:

XAML:

<ListView ItemsSource="{Binding TrackCollection}" MouseDoubleClick="ListView_MouseDoubleClick" />

C#:

    void ListView_MouseDoubleClick(object sender, MouseButtonEventArgs e)
    {
        var item = ((FrameworkElement) e.OriginalSource).DataContext as Track;
        if (item != null)
        {
            MessageBox.Show("Item's Double Click handled!");
        }
    }
link|improve this answer
feedback

In your example are you trying to catch when an item in your ListView is selected or when a column header is clicked on? If it's the former you would add a SelectionChanged handler.

<ListView Name="TrackListView" SelectionChanged="MySelectionChanged">

If it's the latter you would have to use some combination of MouseLeftButtonUp or MouseLeftButtonDown events on the GridViewColumn items to detect a double click and take appropriate action. Alternatively you could handle the events on the GridView and work out from there which column header was under the mouse.

link|improve this answer
I wanted an event on the bounded items, not the headers – Andreas Grech Apr 8 '09 at 2:06
That's a new one for me. Thanks for putting up your answer (and I'll remove the no DoubleClick event statement from mine). – sipwiz Apr 8 '09 at 2:09
Glad to be of help =) – Andreas Grech Apr 8 '09 at 2:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.