I have a xaml layed out somewhat like below. The EventTrigger triggers myControl well, a problem arises however when the UserControl is unloaded. I use datatemplating to load/unload this control for a specific viewmodel.
The problem I encounter is that when the mouse is over the grid and the control is unloaded the TargetName on the storyboard can not be resolved. This causes an InvalidOperationException. I 'fixed' it by removing the actions on the EventTrigger in the code behind handling of UserControl.Unloaded which is less than ideal.
Why is this happening and am I doing something wrong?
<UserControl>
<Grid>
<Grid.Triggers>
<EventTrigger RoutedEvent="FrameworkElement.MouseLeave">
<BeginStoryboard>
<Storyboard TargetName="myControl> .. </Storyboard>
</BeginStoryboard>
</EventTrigger>
</Grid.Triggers>
<Button Name="myControl"/>
.. more controls ..
</Grid>
</UserControl>