I have a WPF Datagrid showing data. For each item displayed in the DataGrid, the item can be expanded to display detail data shown using the RowDetailsTemplate. Both the DataGrid Row and the RowDetailsTemplate handle the Double Click event.
The problem is when double clicking on the RowDetailsTemplate, the double click event is correctly fired, but the double click event for the parent Row is ALSO fired. This is undesired behaviour.
Does anyone know how to resolve this so that double clicking on the RowDetailTemplate only fired the RowDetailsTemplate double click event and not also it's parent Row double click event?