BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
<Line Name="Line" X1="{Binding X1}" Y1="{Binding Y1}" StrokeThickness="{Binding StrokeThickness}" Stroke="{Binding Interior}">
<Line.Triggers>
<EventTrigger SourceName="Line" RoutedEvent="Line.Loaded">
<BeginStoryboard>
<Storyboard FillBehavior="HoldEnd" >
<DoubleAnimation Storyboard.TargetName="Line" Storyboard.TargetProperty="X1" From="200" To="{Binding X1}" Duration="00:00:02">
</DoubleAnimation>
</Storyboard>
</BeginStoryboard>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="Line" Storyboard.TargetProperty="X2" From="200" To="{Binding X2}" Duration="00:00:02">
</DoubleAnimation>
</Storyboard>
</BeginStoryboard>
<BeginStoryboard>
<Storyboard FillBehavior="HoldEnd" >
<DoubleAnimationUsingKeyFrames
Storyboard.TargetName="Line"
Storyboard.TargetProperty="Y1"
Duration="00:00:04" AutoReverse="False">
<LinearDoubleKeyFrame Value="100" KeyTime="0:0:0" />
<LinearDoubleKeyFrame Value="100" KeyTime="0:0:2" />
<LinearDoubleKeyFrame Value="{Binding Y1}" KeyTime="0:0:4" />
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
<BeginStoryboard>
<Storyboard>
<DoubleAnimationUsingKeyFrames
Storyboard.TargetName="Line"
Storyboard.TargetProperty="Y2"
Duration="00:00:04" AutoReverse="False">
<LinearDoubleKeyFrame Value="100" KeyTime="0:0:0" />
<LinearDoubleKeyFrame Value="100" KeyTime="0:0:2" />
<LinearDoubleKeyFrame Value="{Binding Y2}" KeyTime="0:0:4" />
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Line.Triggers>
</Line> |