I have a GridView where I want to detect a doubleclick event on the items in the list, i do it as follows:
You can add the MouseDoubleClick event to ListViewItem in the ItemContainerStyle like this
Code behind..
void ListViewItem_MouseDoubleClick(object sender, MouseButtonEventArgs e) { //... }