I'm getting "Handler type not valid" when I set the Selected event in the RowStyle.
My XAML is:
And my event handler is:
The documentation says that this is the type of handler. So what is the problem?
My XAML is:
<telerik:RadGridView.RowStyle> <Style TargetType="telerik:GridViewRow" > <EventSetter Event="Selected" Handler="pHandleItemSelected" /> </Style></telerik:RadGridView.RowStyle>Private Sub pHandleItemSelected(sender As System.Object, e As RoutedEventArgs)End The documentation says that this is the type of handler. So what is the problem?