I'm just starting out with WPF and need some help with routed events. I have added a datagrid with some animation, but i can't seem to find anywhere that shows me a list of routed events to use on the datagrid, or any other control for that matter. Seems to be a guessing game so far.
I thought the datagrid standard events, such as CellEditEnding, was it but they are not as it says "Invalid event name".
The example I copied used a MouseEnter routed event, but i don't know what else there is for me to use (except my own of course).
<Window.Triggers>
<EventTrigger RoutedEvent="my:DataGrid.MouseEnter">
<BeginStoryboard Storyboard="{StaticResource MyAnimation}"/>
</EventTrigger>
</Window.Triggers>
thanks in advance for you help