Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.