CustomAnimatorPage.xaml 953 B

12345678910111213141516171819202122232425
  1. <UserControl
  2. xmlns="https://github.com/avaloniaui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:pages="clr-namespace:RenderDemo.Pages"
  5. x:Class="RenderDemo.Pages.CustomAnimatorPage"
  6. MaxWidth="600">
  7. <Grid>
  8. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">
  9. <TextBlock.Styles>
  10. <Style Selector="TextBlock">
  11. <Style.Animations>
  12. <Animation Duration="0:0:1" IterationCount="Infinite">
  13. <KeyFrame Cue="0%">
  14. <Setter Property="Text" Value="" Animation.Animator="{x:Type pages:CustomStringAnimator}"/>
  15. </KeyFrame>
  16. <KeyFrame Cue="100%">
  17. <Setter Property="Text" Value="0123456789" Animation.Animator="{x:Type pages:CustomStringAnimator}"/>
  18. </KeyFrame>
  19. </Animation>
  20. </Style.Animations>
  21. </Style>
  22. </TextBlock.Styles>
  23. </TextBlock>
  24. </Grid>
  25. </UserControl>