Partilhar via


Como: Animar alterações de tamanho usando keyframes

Este exemplo mostra como animar alterações de tamanho usando keyframes.

Exemplo

O exemplo seguinte usa a classe SizeAnimationUsingKeyFrames para animar a propriedade Size de um ArcSegment. Essa animação usa três quadros de chave da seguinte maneira:

  1. Durante o primeiro meio segundo da animação, usa uma instância da classe LinearSizeKeyFrame para aumentar o tamanho do arco gradualmente. Quadros-chave lineares como LinearSizeKeyFrame criam uma transição linear suave entre valores.

  2. No final do próximo meio segundo, usa uma instância da classe DiscreteSizeKeyFrame para aumentar a espessura da borda do arco repentinamente. Quadros-chave discretos como DiscreteSizeKeyFrame criam saltos repentinos entre valores, ou seja, as alterações de tamanho ocorrem repentinamente e não são sutis.

  3. Sobre os finais dois segundos, usa uma instância da classe SplineSizeKeyFrame para aumentar o tamanho do arco. Quadros de chave de Spline como SplineSizeKeyFrame criam transições variáveis entre valores de acordo com os valores da propriedade KeySpline. Nesse exemplo, o tamanho do arco aumenta lentamente no primeiro e aumenta exponencialmente até o final do segmento de tempo.

<!-- This example shows how to use the SizeAnimationUsingKeyFrames to animate the
size of an ArcSegment. -->
<Page xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml" >

    <Canvas HorizontalAlignment="Left" Margin="0" >

      <!-- Create an arc on the screen that animates its size when it loads. -->
      <Path Stroke="Black" StrokeThickness="2" >
        <Path.Data>
          <PathGeometry>
            <PathGeometry.Figures>
              <PathFigureCollection>
                <PathFigure StartPoint="100,200">
                  <PathFigure.Segments>
                    <PathSegmentCollection>
                      <ArcSegment x:Name="myArcSegment" Size="90,80" 
                      SweepDirection="Clockwise"  Point="500,200" />
                    </PathSegmentCollection>
                  </PathFigure.Segments>
                </PathFigure>
              </PathFigureCollection>
            </PathGeometry.Figures>
          </PathGeometry>
        </Path.Data>
        <Path.Triggers>
          <EventTrigger RoutedEvent="Path.Loaded">
            <BeginStoryboard Name="myBeginStoryBoard">
              <Storyboard>

                <!-- Animating the Size property uses 3 KeyFrames. -->
                <SizeAnimationUsingKeyFrames
                Storyboard.TargetName="myArcSegment"
                Storyboard.TargetProperty="Size" >
                  <SizeAnimationUsingKeyFrames.KeyFrames>
                    <!-- Using a LinearSizeKeyFrame, the size of the arc increases
                         gradually over the first half second of the animation. -->
                    <LinearSizeKeyFrame KeyTime="0:0:0.5" Value="120,120" />

                    <!-- Using a DiscreteSizeKeyFrame, the size increases suddenly
                    after the first second of the animation. -->
                    <DiscreteSizeKeyFrame KeyTime="0:0:1" Value="150,150" />

                    <!-- Using a SplineSizeKeyFrame, the Size increases slowly at first 
                         and then speeds up exponentially. This KeyFrame takes 2 seconds. -->
                    <SplineSizeKeyFrame KeySpline="0.6,0.0 0.9,0.00" KeyTime="0:0:3" Value="300,300" />

                  </SizeAnimationUsingKeyFrames.KeyFrames>
                </SizeAnimationUsingKeyFrames>

              </Storyboard>
            </BeginStoryboard>
          </EventTrigger>
        </Path.Triggers>
      </Path>
    </Canvas>

</Page>

For the complete sample, see Exemplo de animação KeyFrame.

Consulte também

Tarefas

Exemplo de animação KeyFrame

Conceitos

Visão geral de animações de Quadro-Chave

Referência

SizeAnimationUsingKeyFrames

Size

ArcSegment

LinearSizeKeyFrame

DiscreteSizeKeyFrame

SplineSizeKeyFrame

Outros recursos

Key-Frame Animation How-to Topics