■ ImageBehavior 클래스의 AnimatedSource 첨부 속성을 사용해 움직이는 GIF 애니메이션을 만드는 방법을 보여준다.
▶ MainWindow.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:wag="clr-namespace:WpfAnimatedGif;assembly=WpfAnimatedGif" Width="800" Height="600" Title="TestProject" FontFamily="나눔고딕코딩" FontSize="16"> <Image Stretch="None" wag:ImageBehavior.AnimatedSource="sample.gif"> </Image> </Window> |