■ PointAnimationUsingPath 엘리먼트를 사용해 경로를 따라 객체에 애니메이션 효과를 주는 방법을 보여준다.
▶ MainWindow.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 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:options="http://schemas.microsoft.com/winfx/2006/xaml/presentation/options" Width="800" Height="600" Title="TestProject" FontFamily="나눔고딕코딩" FontSize="16"> <Canvas Width="400" Height="400" Background="LightGray"> <Path Margin="15 15 15 15" Fill="Blue"> <Path.Data> <EllipseGeometry x:Name="ellipseGeometry" Center="10 100" RadiusX="15" RadiusY="15" /> </Path.Data> <Path.Triggers> <EventTrigger RoutedEvent="Path.Loaded"> <BeginStoryboard> <Storyboard> <PointAnimationUsingPath Storyboard.TargetName="ellipseGeometry" Storyboard.TargetProperty="Center" Duration="00:00:05" RepeatBehavior="Forever" AutoReverse="True"> <PointAnimationUsingPath.PathGeometry> <PathGeometry Figures="M 10 100 C 35 0 135 0 160 100 180 190 285 200 310 100" options:Freeze="True" /> </PointAnimationUsingPath.PathGeometry> </PointAnimationUsingPath> </Storyboard> </BeginStoryboard> </EventTrigger> </Path.Triggers> </Path> </Canvas> </Window> |