As the title says, I want to know how to assign the height(or ActualHeight) of the container to the To parameter/attribute of DoubleAnimation in xaml?
Here is my code:
<Canvas Name="animCanvas">
    <Rectangle 
        Name="animSquare"
        Canvas.Left="0"
        Fill="AliceBlue"
        Stroke="Bisque"
        StrokeThickness="5"
        Width="100"
        Height="100"
        >
        <Rectangle.Triggers>
            <EventTrigger RoutedEvent="Window.Loaded">
                <BeginStoryboard>
                    <Storyboard RepeatBehavior="Forever">
                        <DoubleAnimation
                            Storyboard.TargetName="animSquare"
                            Storyboard.TargetProperty="(Canvas.Top)"
                            From="0"
                            To="500" <!-- I want to set it to the containers height -->
                            Duration="0:0:1"
                        />
                    </Storyboard>
                </BeginStoryboard>
            </EventTrigger>
        </Rectangle.Triggers>
    </Rectangle>
</Canvas>
 
     
    