Advertisement
Guest User

WPF Loading Animation in XAML

a guest
Jun 24th, 2011
4,725
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 33.00 KB | None | 0 0
  1. <UserControl
  2.  x:Class="LoadingControl.Control.LoadingAnimation"
  3.  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4.  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5.  xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6.  xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7.  mc:Ignorable="d"
  8.  IsHitTestVisible="False"
  9. >
  10.     <UserControl.Resources>
  11.  
  12.         <!-- A block in the progress ring (why does this trapezoid have a dozen corners?) -->
  13.         <Geometry x:Key="Block">
  14.             M291.15499,85.897525
  15.             C291.15499,85.897525
  16.              301.88917,85.87921
  17.              301.88917,85.87921
  18.              301.88917,85.87921
  19.              300.38339,94.355061
  20.              300.38339,94.355061
  21.              300.38339,94.355061
  22.              292.85366,94.355042
  23.              292.85366,94.355042
  24.              292.85366,94.355042
  25.              291.15499,85.897525
  26.              291.15499,85.897525
  27.             Z
  28.         </Geometry>
  29.  
  30.         <!-- Animations for the individual blocks of the progress ring -->
  31.         <Storyboard x:Key="ProgressAnimation" RepeatBehavior="Forever">
  32.  
  33.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block0" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  34.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#FF000000"/>
  35.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#EF000000"/>
  36.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#E2000000"/>
  37.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#D3000000"/>
  38.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#C6000000"/>
  39.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#B7000000"/>
  40.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#AA000000"/>
  41.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#9B000000"/>
  42.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#8E000000"/>
  43.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#7F000000"/>
  44.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#72000000"/>
  45.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#63000000"/>
  46.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#56000000"/>
  47.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#3D000000"/>
  48.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#26000000"/>
  49.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#19000000"/>
  50.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#0C000000"/>
  51.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#00000000"/>
  52.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#FF000000"/>
  53.             </ColorAnimationUsingKeyFrames>
  54.  
  55.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block1" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  56.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#00000000"/>
  57.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#FF000000"/>
  58.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#EF000000"/>
  59.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#E2000000"/>
  60.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#D3000000"/>
  61.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#C6000000"/>
  62.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#B7000000"/>
  63.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#AA000000"/>
  64.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#9B000000"/>
  65.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#8E000000"/>
  66.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#7F000000"/>
  67.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#72000000"/>
  68.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#63000000"/>
  69.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#56000000"/>
  70.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#3D000000"/>
  71.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#26000000"/>
  72.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#19000000"/>
  73.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#0C000000"/>
  74.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#00000000"/>
  75.             </ColorAnimationUsingKeyFrames>
  76.  
  77.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block2" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  78.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#0C000000"/>
  79.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#00000000"/>
  80.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#FF000000"/>
  81.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#EF000000"/>
  82.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#E2000000"/>
  83.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#D3000000"/>
  84.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#C6000000"/>
  85.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#B7000000"/>
  86.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#AA000000"/>
  87.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#9B000000"/>
  88.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#91000000"/>
  89.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#7F000000"/>
  90.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#72000000"/>
  91.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#63000000"/>
  92.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#56000000"/>
  93.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#3D000000"/>
  94.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#26000000"/>
  95.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#19000000"/>
  96.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#0C000000"/>
  97.             </ColorAnimationUsingKeyFrames>
  98.  
  99.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block3" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  100.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#19000000"/>
  101.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#0C000000"/>
  102.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#00000000"/>
  103.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#FF000000"/>
  104.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#EF000000"/>
  105.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#E2000000"/>
  106.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#D3000000"/>
  107.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#C6000000"/>
  108.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#B7000000"/>
  109.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#AA000000"/>
  110.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#9B000000"/>
  111.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#91000000"/>
  112.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#7F000000"/>
  113.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#72000000"/>
  114.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#63000000"/>
  115.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#56000000"/>
  116.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#3D000000"/>
  117.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#26000000"/>
  118.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#19000000"/>
  119.             </ColorAnimationUsingKeyFrames>
  120.  
  121.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block4" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  122.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#26000000"/>
  123.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#19000000"/>
  124.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#0C000000"/>
  125.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#00000000"/>
  126.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#FF000000"/>
  127.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#EF000000"/>
  128.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#E2000000"/>
  129.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#D3000000"/>
  130.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#C6000000"/>
  131.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#B7000000"/>
  132.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#AA000000"/>
  133.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#9B000000"/>
  134.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#91000000"/>
  135.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#7F000000"/>
  136.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#72000000"/>
  137.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#63000000"/>
  138.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#56000000"/>
  139.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#3D000000"/>
  140.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#26000000"/>
  141.             </ColorAnimationUsingKeyFrames>
  142.  
  143.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block5" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  144.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#3D000000"/>
  145.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#26000000"/>
  146.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#19000000"/>
  147.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#0C000000"/>
  148.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#00000000"/>
  149.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#FF000000"/>
  150.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#EF000000"/>
  151.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#E2000000"/>
  152.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#D3000000"/>
  153.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#C6000000"/>
  154.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#B7000000"/>
  155.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#AA000000"/>
  156.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#9B000000"/>
  157.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#91000000"/>
  158.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#7F000000"/>
  159.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#72000000"/>
  160.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#63000000"/>
  161.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#56000000"/>
  162.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#3D000000"/>
  163.             </ColorAnimationUsingKeyFrames>
  164.  
  165.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block6" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  166.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#56000000"/>
  167.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#3D000000"/>
  168.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#26000000"/>
  169.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#19000000"/>
  170.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#0C000000"/>
  171.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#00000000"/>
  172.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#FF000000"/>
  173.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#EF000000"/>
  174.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#E2000000"/>
  175.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#D3000000"/>
  176.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#C6000000"/>
  177.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#B7000000"/>
  178.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#AA000000"/>
  179.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#9B000000"/>
  180.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#91000000"/>
  181.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#7F000000"/>
  182.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#72000000"/>
  183.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#63000000"/>
  184.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#56000000"/>
  185.             </ColorAnimationUsingKeyFrames>
  186.  
  187.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block7" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  188.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#63000000"/>
  189.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#56000000"/>
  190.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#3D000000"/>
  191.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#26000000"/>
  192.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#19000000"/>
  193.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#0C000000"/>
  194.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#00000000"/>
  195.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#FF000000"/>
  196.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#EF000000"/>
  197.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#E2000000"/>
  198.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#D3000000"/>
  199.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#C6000000"/>
  200.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#B7000000"/>
  201.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#AA000000"/>
  202.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#9B000000"/>
  203.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#91000000"/>
  204.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#7F000000"/>
  205.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#72000000"/>
  206.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#63000000"/>
  207.             </ColorAnimationUsingKeyFrames>
  208.  
  209.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block8" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  210.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#72000000"/>
  211.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#63000000"/>
  212.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#56000000"/>
  213.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#3D000000"/>
  214.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#26000000"/>
  215.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#19000000"/>
  216.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#0C000000"/>
  217.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#00000000"/>
  218.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#FF000000"/>
  219.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#EF000000"/>
  220.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#E2000000"/>
  221.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#D3000000"/>
  222.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#C6000000"/>
  223.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#B7000000"/>
  224.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#AA000000"/>
  225.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#9B000000"/>
  226.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#91000000"/>
  227.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#7F000000"/>
  228.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#72000000"/>
  229.             </ColorAnimationUsingKeyFrames>
  230.  
  231.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block9" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  232.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#7F000000"/>
  233.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#72000000"/>
  234.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#63000000"/>
  235.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#56000000"/>
  236.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#3D000000"/>
  237.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#26000000"/>
  238.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#19000000"/>
  239.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#0C000000"/>
  240.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#00000000"/>
  241.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#FF000000"/>
  242.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#EF000000"/>
  243.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#E2000000"/>
  244.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#D3000000"/>
  245.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#C6000000"/>
  246.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#B7000000"/>
  247.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#AA000000"/>
  248.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#9B000000"/>
  249.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#91000000"/>
  250.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#7F000000"/>
  251.             </ColorAnimationUsingKeyFrames>
  252.  
  253.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block10" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  254.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#8E000000"/>
  255.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#7F000000"/>
  256.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#72000000"/>
  257.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#63000000"/>
  258.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#56000000"/>
  259.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#3D000000"/>
  260.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#23000000"/>
  261.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#19000000"/>
  262.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#0C000000"/>
  263.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#00000000"/>
  264.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#FF000000"/>
  265.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#EF000000"/>
  266.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#E2000000"/>
  267.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#D3000000"/>
  268.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#C6000000"/>
  269.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#B7000000"/>
  270.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#AA000000"/>
  271.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#9B000000"/>
  272.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#8E000000"/>
  273.             </ColorAnimationUsingKeyFrames>
  274.  
  275.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block11" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  276.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#9B000000"/>
  277.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#8E000000"/>
  278.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#7F000000"/>
  279.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#72000000"/>
  280.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#63000000"/>
  281.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#56000000"/>
  282.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#3D000000"/>
  283.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#26000000"/>
  284.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#19000000"/>
  285.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#0C000000"/>
  286.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#00000000"/>
  287.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#FF000000"/>
  288.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#EF000000"/>
  289.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#E2000000"/>
  290.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#D3000000"/>
  291.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#C6000000"/>
  292.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#B7000000"/>
  293.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#AA000000"/>
  294.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#9B000000"/>
  295.             </ColorAnimationUsingKeyFrames>
  296.  
  297.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block12" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  298.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#AA000000"/>
  299.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#9B000000"/>
  300.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#8E000000"/>
  301.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#7F000000"/>
  302.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#72000000"/>
  303.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#63000000"/>
  304.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#56000000"/>
  305.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#3D000000"/>
  306.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#26000000"/>
  307.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#19000000"/>
  308.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#0C000000"/>
  309.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#00000000"/>
  310.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#FF000000"/>
  311.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#EF000000"/>
  312.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#E2000000"/>
  313.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#D3000000"/>
  314.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#C6000000"/>
  315.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#B7000000"/>
  316.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#AA000000"/>
  317.             </ColorAnimationUsingKeyFrames>
  318.  
  319.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block13" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  320.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#B7000000"/>
  321.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#AA000000"/>
  322.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#9B000000"/>
  323.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#8E000000"/>
  324.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#7F000000"/>
  325.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#72000000"/>
  326.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#63000000"/>
  327.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#56000000"/>
  328.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#3D000000"/>
  329.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#26000000"/>
  330.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#19000000"/>
  331.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#0C000000"/>
  332.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#00000000"/>
  333.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#FF000000"/>
  334.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#EF000000"/>
  335.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#E2000000"/>
  336.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#D3000000"/>
  337.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#C6000000"/>
  338.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#B7000000"/>
  339.             </ColorAnimationUsingKeyFrames>
  340.  
  341.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block14" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  342.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#C6000000"/>
  343.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#B7000000"/>
  344.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#AA000000"/>
  345.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#9B000000"/>
  346.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#8E000000"/>
  347.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#7F000000"/>
  348.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#72000000"/>
  349.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#63000000"/>
  350.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#56000000"/>
  351.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#3D000000"/>
  352.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#26000000"/>
  353.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#19000000"/>
  354.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#0C000000"/>
  355.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#00000000"/>
  356.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#FF000000"/>
  357.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#EF000000"/>
  358.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#E2000000"/>
  359.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#D3000000"/>
  360.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#C6000000"/>
  361.             </ColorAnimationUsingKeyFrames>
  362.  
  363.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block15" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  364.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#D3000000"/>
  365.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#C6000000"/>
  366.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#B7000000"/>
  367.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#AA000000"/>
  368.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#9B000000"/>
  369.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#8E000000"/>
  370.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#7F000000"/>
  371.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#72000000"/>
  372.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#63000000"/>
  373.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#56000000"/>
  374.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#3D000000"/>
  375.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#26000000"/>
  376.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#19000000"/>
  377.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#0C000000"/>
  378.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#00000000"/>
  379.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#FF000000"/>
  380.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#EF000000"/>
  381.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#E2000000"/>
  382.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#D3000000"/>
  383.             </ColorAnimationUsingKeyFrames>
  384.  
  385.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block16" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  386.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#E2000000"/>
  387.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#D3000000"/>
  388.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#C6000000"/>
  389.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#B7000000"/>
  390.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#AA000000"/>
  391.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#9B000000"/>
  392.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#8E000000"/>
  393.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#7F000000"/>
  394.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#72000000"/>
  395.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#63000000"/>
  396.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#56000000"/>
  397.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#3D000000"/>
  398.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#26000000"/>
  399.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#19000000"/>
  400.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#0C000000"/>
  401.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#00000000"/>
  402.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#FF000000"/>
  403.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#EF000000"/>
  404.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#E2000000"/>
  405.             </ColorAnimationUsingKeyFrames>
  406.  
  407.             <ColorAnimationUsingKeyFrames Duration="00:00:03.6" Storyboard.TargetName="block17" Storyboard.TargetProperty="(UIElement.OpacityMask).(SolidColorBrush.Color)">
  408.                 <LinearColorKeyFrame KeyTime="00:00:00.0" Value="#EF000000"/>
  409.                 <LinearColorKeyFrame KeyTime="00:00:00.2" Value="#E2000000"/>
  410.                 <LinearColorKeyFrame KeyTime="00:00:00.4" Value="#D3000000"/>
  411.                 <LinearColorKeyFrame KeyTime="00:00:00.6" Value="#C6000000"/>
  412.                 <LinearColorKeyFrame KeyTime="00:00:00.8" Value="#B7000000"/>
  413.                 <LinearColorKeyFrame KeyTime="00:00:01.0" Value="#AA000000"/>
  414.                 <LinearColorKeyFrame KeyTime="00:00:01.2" Value="#9B000000"/>
  415.                 <LinearColorKeyFrame KeyTime="00:00:01.4" Value="#8E000000"/>
  416.                 <LinearColorKeyFrame KeyTime="00:00:01.6" Value="#7F000000"/>
  417.                 <LinearColorKeyFrame KeyTime="00:00:01.8" Value="#72000000"/>
  418.                 <LinearColorKeyFrame KeyTime="00:00:02.0" Value="#63000000"/>
  419.                 <LinearColorKeyFrame KeyTime="00:00:02.2" Value="#56000000"/>
  420.                 <LinearColorKeyFrame KeyTime="00:00:02.4" Value="#3D000000"/>
  421.                 <LinearColorKeyFrame KeyTime="00:00:02.6" Value="#26000000"/>
  422.                 <LinearColorKeyFrame KeyTime="00:00:02.8" Value="#19000000"/>
  423.                 <LinearColorKeyFrame KeyTime="00:00:03.0" Value="#0C000000"/>
  424.                 <LinearColorKeyFrame KeyTime="00:00:03.2" Value="#00000000"/>
  425.                 <LinearColorKeyFrame KeyTime="00:00:03.4" Value="#FF000000"/>
  426.                 <LinearColorKeyFrame KeyTime="00:00:03.6" Value="#EF000000"/>
  427.             </ColorAnimationUsingKeyFrames>
  428.  
  429.         </Storyboard>
  430.  
  431.     </UserControl.Resources>
  432.  
  433.     <UserControl.Triggers>
  434.         <EventTrigger RoutedEvent="FrameworkElement.Loaded">
  435.             <BeginStoryboard
  436.                 x:Name="ProgressAnimation_BeginStoryboard"
  437.                 Storyboard="{StaticResource ProgressAnimation}"
  438.             />
  439.         </EventTrigger>
  440.     </UserControl.Triggers>
  441.  
  442.     <Canvas x:Name="LayoutRoot" VerticalAlignment="Top" Height="88" Width="88">
  443.  
  444.         <Grid Width="10.734" Height="10.004" Canvas.Left="38.614" Canvas.Top="0.331">
  445.  
  446.             <!-- Block 0 -->
  447.             <Path x:Name="block0" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#00000000" VerticalAlignment="Top" Height="10.004">
  448.                 <Path.RenderTransform>
  449.                     <RotateTransform Angle="180"/>
  450.                 </Path.RenderTransform>
  451.             </Path>
  452.  
  453.             <!-- Block 1 -->
  454.             <Path x:Name="block1" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#0C000000" VerticalAlignment="Top" Height="10.004">
  455.                 <Path.RenderTransform>
  456.                     <RotateTransform Angle="-160"/>
  457.                 </Path.RenderTransform>
  458.             </Path>
  459.  
  460.             <!-- Block 2 -->
  461.             <Path x:Name="block2" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#19000000" VerticalAlignment="Top" Height="10.004">
  462.                 <Path.RenderTransform>
  463.                     <RotateTransform Angle="-140"/>
  464.                 </Path.RenderTransform>
  465.             </Path>
  466.  
  467.             <!-- Block 3 -->
  468.             <Path x:Name="block3" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#26000000" VerticalAlignment="Top" Height="10.004">
  469.                 <Path.RenderTransform>
  470.                     <RotateTransform Angle="-120"/>
  471.                 </Path.RenderTransform>
  472.             </Path>
  473.  
  474.             <!-- Block 4 -->
  475.             <Path x:Name="block4" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#3D000000" VerticalAlignment="Top" Height="10.004">
  476.                 <Path.RenderTransform>
  477.                     <RotateTransform Angle="-100"/>
  478.                 </Path.RenderTransform>
  479.             </Path>
  480.  
  481.             <!-- Block 5 -->
  482.             <Path x:Name="block5" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#56000000" VerticalAlignment="Top" Height="10.004">
  483.                 <Path.RenderTransform>
  484.                     <RotateTransform Angle="-80"/>
  485.                 </Path.RenderTransform>
  486.             </Path>
  487.  
  488.             <!-- Block 6 -->
  489.             <Path x:Name="block6" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#64000000" VerticalAlignment="Top" Height="10.004">
  490.                 <Path.RenderTransform>
  491.                     <RotateTransform Angle="-60"/>
  492.                 </Path.RenderTransform>
  493.             </Path>
  494.  
  495.             <!-- Block 7 -->
  496.             <Path x:Name="block7" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#72000000" VerticalAlignment="Top" Height="10.004">
  497.                 <Path.RenderTransform>
  498.                     <RotateTransform Angle="-40"/>
  499.                 </Path.RenderTransform>
  500.             </Path>
  501.  
  502.             <!-- Block 8 -->
  503.             <Path x:Name="block8" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#80000000" VerticalAlignment="Top" Height="10.004">
  504.                 <Path.RenderTransform>
  505.                     <RotateTransform Angle="-20"/>
  506.                 </Path.RenderTransform>
  507.             </Path>
  508.  
  509.             <!-- Block 9 -->
  510.             <Path x:Name="block9" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" OpacityMask="#8E000000" RenderTransformOrigin="0.5,4.3689" VerticalAlignment="Top" Height="10.004">
  511.                 <Path.RenderTransform>
  512.                     <RotateTransform Angle="0"/>
  513.                 </Path.RenderTransform>
  514.             </Path>
  515.  
  516.             <!-- Block 10 -->
  517.             <Path x:Name="block10" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#9C000000" VerticalAlignment="Top" Height="10.004">
  518.                 <Path.RenderTransform>
  519.                     <RotateTransform Angle="20"/>
  520.                 </Path.RenderTransform>
  521.             </Path>
  522.  
  523.             <!-- Block 11 -->
  524.             <Path x:Name="block11" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#AA000000" VerticalAlignment="Top" Height="10.004">
  525.                 <Path.RenderTransform>
  526.                     <RotateTransform Angle="40"/>
  527.                 </Path.RenderTransform>
  528.             </Path>
  529.  
  530.             <!-- Block 12 -->
  531.             <Path x:Name="block12" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#B8000000" VerticalAlignment="Top" Height="10.004">
  532.                 <Path.RenderTransform>
  533.                     <RotateTransform Angle="60"/>
  534.                 </Path.RenderTransform>
  535.             </Path>
  536.  
  537.             <!-- Block 13 -->
  538.             <Path x:Name="block13" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#C6000000" VerticalAlignment="Top" Height="10.004">
  539.                 <Path.RenderTransform>
  540.                     <RotateTransform Angle="80"/>
  541.                 </Path.RenderTransform>
  542.             </Path>
  543.  
  544.             <!-- Block 14 -->
  545.             <Path x:Name="block14" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#D4000000" VerticalAlignment="Top" Height="10.004">
  546.                 <Path.RenderTransform>
  547.                     <RotateTransform Angle="100"/>
  548.                 </Path.RenderTransform>
  549.             </Path>
  550.  
  551.             <!-- Block 15 -->
  552.             <Path x:Name="block15" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#E2000000" VerticalAlignment="Top" Height="10.004">
  553.                 <Path.RenderTransform>
  554.                     <RotateTransform Angle="120"/>
  555.                 </Path.RenderTransform>
  556.             </Path>
  557.  
  558.             <!-- Block 16 -->
  559.             <Path x:Name="block16" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="#F0000000" VerticalAlignment="Top" Height="10.004">
  560.                 <Path.RenderTransform>
  561.                     <RotateTransform Angle="140"/>
  562.                 </Path.RenderTransform>
  563.             </Path>
  564.  
  565.             <!-- Block 17 -->
  566.             <Path x:Name="block17" Fill="#FF5482A1" Stretch="Fill" Data="{StaticResource Block}" RenderTransformOrigin="0.5,4.3689" OpacityMask="Black" VerticalAlignment="Top" Height="10.004">
  567.                 <Path.RenderTransform>
  568.                     <RotateTransform Angle="160"/>
  569.                 </Path.RenderTransform>
  570.             </Path>
  571.  
  572.         </Grid>
  573.     </Canvas>
  574. </UserControl>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement