This question is locked. New answers and comments are not allowed.
I just upgraded to 2010 q2 and my logic to handle the mouse double click on a row has stopped responding. This code is run during the rows loaded event.
Mouse.AddMouseUpHandler(e.Row, (s, args) => { // Snag report run var reportRun = _GridView.SelectedItem as ReportRun; if (reportRun == null) return; // Only bubble if completed if (reportRun.Status != ReportRunStatus.Finished) return; if (args.ClickCount >= 3) { if (ModelOpened != null) ModelOpened(this, new ModelSelectedEventArgs {Model = _GridView.SelectedItem as ReportRun}); } else { if (ModelSelected != null) ModelSelected(this, new ModelSelectedEventArgs {Model = _GridView.SelectedItem as ReportRun}); } }, false);