Hi,Telerik Team,
I‘m using RadGridView and “EventToCommandBehavior.EventBindings” to process GridViewRow's MouseEnter event,
but “EventToCommandBehavior.EventBindings” is in RadGridView's range,it couldn’t connected with GridViewRow's MouseEnter event exactly ,
which eventName should I use when I need GridViewRow's MouseEnter event.
this is my code :
<telerik:EventToCommandBehavior.EventBindings>
<telerik:EventBinding Command="{Binding RowMouseEnterCommand}" EventName="MouseEnter" CommandParameter="{Binding ElementName=GridView, Path=SelectedItem}"/>
</telerik:EventToCommandBehavior.EventBindings>
Thanks!
Hi Justin,
To process the MouseEnter event, you would need to first handle the RowLoaded event of the RadGridView control as explained in the Handle Cell/Row Mouse Events article.
You can then execute your logic as expected in the added handler. Please give this a try and let me know if such an approach would work for you.