GifPAge.xaml 683 B

12345678910111213141516
  1. <Page x:Class="WindowedMyApp.GifPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:gif="http://wpfanimatedgif.codeplex.com"
  7. xmlns:local="clr-namespace:WindowedMyApp"
  8. mc:Ignorable="d"
  9. d:DesignHeight="450" d:DesignWidth="800"
  10. Title="DiagramPage">
  11. <Grid>
  12. <Image gif:ImageBehavior.RepeatBehavior="3x"
  13. gif:ImageBehavior.AnimatedSource="Media/animated.gif"/>
  14. </Grid>
  15. </Page>