I use the code below to handle row clicks in Telerik GridView, how can I handle the delegate for this method in my view model instead of handling OnRowMouseDown in my view?
EventManager.RegisterClassHandler(typeof(GridViewRow), GridViewRow.MouseLeftButtonDownEvent, new RoutedEventHandler(OnRowMouseDown), true);
The parameter new RoutedEventHandler(OnRowMouseDown) is a delegate.