共用方式為


如何:當屬性值變更時觸發動畫

這個範例示範如何使用 Trigger,在屬性值變更時啟動 Storyboard。 您可以在 StyleControlTemplateDataTemplate 內使用 Trigger

範例

下列範例會使用 Trigger,在其 IsMouseOver 屬性變成 true 時,以動畫顯示 ButtonOpacity

<!-- PropertyTriggerExample.xaml
     Shows how to use property triggers to start animations. -->
<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  WindowTitle="Animate Properties with Storyboards">
  <Page.Resources>
  
    <Style x:Key="PropertyTriggerExampleButtonStyle" TargetType="{x:Type Button}">
      
      <Setter Property="Opacity" Value="0.25" />
      
      <Style.Triggers>
        <Trigger Property="IsMouseOver" Value="True">

          <Trigger.EnterActions>
            <BeginStoryboard>
              <Storyboard>
                <DoubleAnimation Storyboard.TargetProperty="Opacity"
                  To="1" Duration="0:0:1" />
              </Storyboard>
            </BeginStoryboard>
          </Trigger.EnterActions>
          <Trigger.ExitActions>
            <BeginStoryboard>
              <Storyboard>
                <DoubleAnimation Storyboard.TargetProperty="Opacity"
                  To="0.25" Duration="0:0:1" />
              </Storyboard>
            </BeginStoryboard>
          </Trigger.ExitActions>          
        </Trigger>               
      </Style.Triggers>    
    </Style>
  </Page.Resources>

  <StackPanel Margin="20">

    <Button Style="{StaticResource PropertyTriggerExampleButtonStyle}">
      Move the mouse over me.
    </Button>

  </StackPanel>
</Page>

由屬性 Trigger 物件 (部分機器翻譯) 套用的動畫行為比起 EventTrigger (部分機器翻譯) 動畫或使用 Storyboard (部分機器翻譯) 方法開始的動畫更為複雜。 其會「交接」由其他 Trigger 物件 (部分機器翻譯) 定義的動畫,但其中包含 EventTrigger (部分機器翻譯) 和由方法觸發的動畫。

另請參閱