■ ChangePropertyAction 엘리먼트의 TargetObject/PropertyName/Value 속성을 사용해 특정 객체 속성값을 설정하는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
xmlns:mxic="using:Microsoft.Xaml.Interactions.Core" xmlns:mxi="using:Microsoft.Xaml.Interactivity" xmlns:ctwa="using:CommunityToolkit.WinUI.Animations" xmlns:ctwb="using:CommunityToolkit.WinUI.Behaviors" <Button HorizontalAlignment="Center" VerticalAlignment="Center" Width="150" Height="100"> <ctwa:Explicit.Animations> <ctwa:AnimationSet x:Name="moveAnimationSet" IsSequential="True"> <ctwa:StartAnimationActivity Animation="{Binding ElementName=fadeOutAnimationSet}" /> <ctwa:InvokeActionsActivity> <mxic:ChangePropertyAction TargetObject="{Binding ElementName=textBlock}" PropertyName="Foreground" Value="Purple" /> </ctwa:InvokeActionsActivity> <ctwa:StartAnimationActivity Animation="{Binding ElementName=fadeInAnimationSet}" Delay="00:00:02" /> </ctwa:AnimationSet> </ctwa:Explicit.Animations> <TextBlock Name="textBlock" FontSize="20" Text="🦙 Text"> <ctwa:Explicit.Animations> <ctwa:AnimationSet x:Name="fadeOutAnimationSet"> <ctwa:OpacityAnimation Delay="0" EasingMode="EaseOut" EasingType="Linear" Duration="00:00:01" From="1" To="0" /> </ctwa:AnimationSet> <ctwa:AnimationSet x:Name="fadeInAnimationSet"> <ctwa:OpacityAnimation Delay="0" EasingMode="EaseOut" EasingType="Linear" Duration="00:00:01" From="0" To="1" /> </ctwa:AnimationSet> </ctwa:Explicit.Animations> </TextBlock> <mxi:Interaction.Behaviors> <mxic:EventTriggerBehavior EventName="Click"> <mxic:ChangePropertyAction TargetObject="{Binding ElementName=textBlock}" PropertyName="Foreground" Value="White" /> <ctwb:StartAnimationAction Animation="{Binding ElementName=moveAnimationSet}" /> </mxic:EventTriggerBehavior> </mxi:Interaction.Behaviors> </Button> |