vote up 6 vote down star
1

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?

flag

2 Answers

vote up 1 vote down

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|flag
I wanted an event on the bounded items, not the headers – Andreas Grech Apr 8 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 at 2:09
Glad to be of help =) – Andreas Grech Apr 8 at 2:14
vote up 11 vote down check

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|flag
1  
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 at 12:24
Thanks for the tip David. – Andreas Grech Jun 7 at 11:34
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 at 22:25
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 at 16:06

Your Answer

Get an OpenID
or

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