共用方式為


操作說明:使用主要畫面格建立框線粗細的動畫

此範例會示範如何製作 BorderBorderThickness 屬性的動畫效果。

範例

下列範例會使用 ThicknessAnimationUsingKeyFrames (部分機器翻譯) 類別來製作 Border (部分機器翻譯) 的 BorderThickness (部分機器翻譯) 屬性的動畫效果。 這個動畫會以下列方式使用三個主要畫面格:

  1. 在前半秒期間,使用 LinearThicknessKeyFrame 類別的執行個體來逐漸增加框線的粗細。 此範例會使用 LinearThicknessKeyFrame 在值之間建立平滑的線性增長。

  2. 在下半秒結束時,使用 DiscreteThicknessKeyFrame 類別的執行個體來突然增加框線的粗細。 像是衍生自 DiscreteThicknessKeyFrame 的這些特定主要畫面格會在值之間建立突然跳躍點,也就是,動畫的移動不穩定。

  3. 在最後兩秒期間,使用 SplineThicknessKeyFrame 類別的執行個體來減少框線的粗細。 像是衍生自 SplineThicknessKeyFrame 的 (部分機器翻譯) 這些曲線主要畫面格會根據 KeySpline (部分機器翻譯) 屬性的值在值之間建立可變的過渡。 在此主要畫面格中,動畫一開始速度緩慢,然後在接近時間區段結尾時會以指數方式加速。

<!-- This example shows how to use the ThicknessAnimationUsingKeyFrames to create
an animation on the BorderThickness property of a Border. -->
<Page  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="Microsoft.Samples.KeyFrameExamples.ThicknessAnimationUsingKeyFramesExample"
  Name="myRootElement"
  WindowTitle="ThicknessAnimationUsingKeyFrames Example">

  <StackPanel Orientation="Vertical" HorizontalAlignment="Center">
    <Border Background="#99FFFFFF" BorderBrush="#CCCCFF" BorderThickness="1"
    Margin="0,60,0,20" Padding="20"  >
      <Border.Triggers>
        <EventTrigger RoutedEvent="Border.Loaded">
          <BeginStoryboard>
            <Storyboard>

              <!-- Animating the BorderThickness property uses 3 KeyFrames. -->
              <ThicknessAnimationUsingKeyFrames
                Storyboard.TargetProperty="BorderThickness"
                Duration="0:0:5" FillBehavior="HoldEnd" RepeatBehavior="Forever">
                <ThicknessAnimationUsingKeyFrames.KeyFrames>

                  <!-- Using a LinearThicknessKeyFrame, thickness increases gradually
                  over the first half second of the animation. -->
                  <LinearThicknessKeyFrame KeyTime="0:0:0.5">
                    <LinearThicknessKeyFrame.Value>
                      <Thickness Left="8" Right="8" Top="6" Bottom="6" />
                    </LinearThicknessKeyFrame.Value>
                  </LinearThicknessKeyFrame>

                  <!-- Using a DiscreteThicknessKeyFrame, thickness increases suddenly
                  after the first second of the animation. -->
                  <DiscreteThicknessKeyFrame KeyTime="0:0:1">
                    <DiscreteThicknessKeyFrame.Value>
                      <Thickness Left="28" Right="28" Top="24" Bottom="24" />
                    </DiscreteThicknessKeyFrame.Value>
                  </DiscreteThicknessKeyFrame>

                  <!-- Using a SplineThicknessKeyFrame, thickness decreases slowly at first
                  and then suddenly contracts. This KeyFrame takes 2 seconds. -->
                  <SplineThicknessKeyFrame KeySpline="0.6,0.0 0.9,0.00" KeyTime="0:0:3">
                    <SplineThicknessKeyFrame.Value>
                      <Thickness Left="1" Right="1" Top="1" Bottom="8" />
                    </SplineThicknessKeyFrame.Value>
                  </SplineThicknessKeyFrame>

                </ThicknessAnimationUsingKeyFrames.KeyFrames>
              </ThicknessAnimationUsingKeyFrames>
            </Storyboard>
          </BeginStoryboard>
        </EventTrigger>
      </Border.Triggers>

      <TextBlock>
        This example shows how to use the ThicknessAnimationUsingKeyFrames to create
        an animation on the BorderThickness property of a Border. 
      </TextBlock>
    </Border>

  </StackPanel>
</Page>

如需完整的範例,請參閱主要畫面格動畫範例

另請參閱