gpt4 book ai didi

silverlight - 在哪里可以找到 Silverlight 标准加载动画?

转载 作者:行者123 更新时间:2023-12-01 10:15:23 24 4
gpt4 key购买 nike

在我的生活中,我似乎找不到标准的 Silverlight 加载动画,带有旋转球的动画(嗯……看起来/听起来不对……无论如何)……是这在 SDK 的某处?

有没有可以在 Silverlight 中使用繁忙动画的网站?

最佳答案

标准加载屏幕实际上嵌入在 native Silverlight 代码中,因为它在核心 CLR 加载之前可用,并且实际上不是 ProgressBar 模板或类似的东西。

这意味着您需要将它嵌入到您的应用程序中,无法在 XAML 中直接引用它或在代码中提取它。

我环顾四周并找到了它。可以更新 LoadingText 命名文本 block 以将 0% 更改为有用的内容。

<Grid>
<Grid.Triggers>
<EventTrigger RoutedEvent='Canvas.Loaded'>
<EventTrigger.Actions>
<BeginStoryboard>
<Storyboard x:Name='LoadingAnimation2' AutoReverse='False' RepeatBehavior='Forever'>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleOne2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)'>
<SplineDoubleKeyFrame KeyTime='00:00:00' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:00.3' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:00.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.2' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.7' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.3' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.3' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.8' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleOne2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)'>
<SplineDoubleKeyFrame KeyTime='00:00:00' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:00.3' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:00.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.2' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.7' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.3' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.3' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.8' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleTwo2' Storyboard.TargetProperty='(UIElement.Opacity)'>
<SplineDoubleKeyFrame KeyTime='00:00:00' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:00.5' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:00.8' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.4' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.9' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.1' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.4' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.1' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.6' Value='0'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleThree2' Storyboard.TargetProperty='(UIElement.Opacity)'>
<SplineDoubleKeyFrame KeyTime='00:00:00' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:00.7' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:01' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.1' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.9' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.2' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.9' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.4' Value='0'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleFour2' Storyboard.TargetProperty='(UIElement.Opacity)'>
<SplineDoubleKeyFrame KeyTime='00:00:00' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:00.9' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:01.2' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.8' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.3' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.7' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:06' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.7' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.2' Value='0'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleFive2' Storyboard.TargetProperty='(UIElement.Opacity)'>
<SplineDoubleKeyFrame KeyTime='00:00:00' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:01.1' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:01.4' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.5' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.5' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.8' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.5' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:08' Value='0'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleSix2' Storyboard.TargetProperty='(UIElement.Opacity)'>
<SplineDoubleKeyFrame KeyTime='00:00:00' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:01.3' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:01.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.2' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.7' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.3' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.3' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.8' Value='0'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleSeven2' Storyboard.TargetProperty='(UIElement.Opacity)'>
<SplineDoubleKeyFrame KeyTime='00:00:00' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:01.5' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:01.8' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.4' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.9' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.1' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.4' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.1' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.6' Value='0'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleEight2' Storyboard.TargetProperty='(UIElement.Opacity)'>
<SplineDoubleKeyFrame KeyTime='00:00:00' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:01.7' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:02' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:04.1' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:04.9' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.2' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.9' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.4' Value='0'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleOne2' Storyboard.TargetProperty='(UIElement.Opacity)'>
<SplineDoubleKeyFrame KeyTime='00:00:00' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:00.3' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:00.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.2' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.7' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.3' Value='0'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.3' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.8' Value='0'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleTwo2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)'>
<SplineDoubleKeyFrame KeyTime='00:00:00.8' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.4' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.9' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.1' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.4' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.1' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.6' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleTwo2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)'>
<SplineDoubleKeyFrame KeyTime='00:00:00.8' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.4' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.9' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.1' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.4' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.1' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.6' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleThree2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)'>
<SplineDoubleKeyFrame KeyTime='00:00:01' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.6' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.1' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.9' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.2' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.9' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.4' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleThree2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)'>
<SplineDoubleKeyFrame KeyTime='00:00:01' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.6' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.1' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.9' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.2' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.9' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.4' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleFour2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)'>
<SplineDoubleKeyFrame KeyTime='00:00:01.2' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.8' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.3' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.7' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.7' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.2' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleFour2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)'>
<SplineDoubleKeyFrame KeyTime='00:00:01.2' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:02.8' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.3' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.7' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.7' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:08.2' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleFive2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)'>
<SplineDoubleKeyFrame KeyTime='00:00:01.4' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.5' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.5' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.8' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.5' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:08' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleFive2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)'>
<SplineDoubleKeyFrame KeyTime='00:00:01.4' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.5' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.5' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.8' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.5' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:08' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleSix2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)'>
<SplineDoubleKeyFrame KeyTime='00:00:01.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.2' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.7' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.3' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.3' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.8' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleSix2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)'>
<SplineDoubleKeyFrame KeyTime='00:00:01.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.2' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.7' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.3' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.6' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.3' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.8' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleSeven2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)'>
<SplineDoubleKeyFrame KeyTime='00:00:01.8' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.4' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.9' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.1' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.4' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.1' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.6' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleSeven2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)'>
<SplineDoubleKeyFrame KeyTime='00:00:01.8' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.4' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.9' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.1' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.4' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.1' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.6' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleEight2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)'>
<SplineDoubleKeyFrame KeyTime='00:00:02' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.6' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:04.1' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:04.9' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.2' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.9' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.4' Value='1'/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime='00:00:00' Storyboard.TargetName='BubbleEight2' Storyboard.TargetProperty='(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)'>
<SplineDoubleKeyFrame KeyTime='00:00:02' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:03.6' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:04.1' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:04.9' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:05.2' Value='1'/>
<SplineDoubleKeyFrame KeyTime='00:00:06.9' Value='3'/>
<SplineDoubleKeyFrame KeyTime='00:00:07.4' Value='1'/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger.Actions>
</EventTrigger>
</Grid.Triggers>
<Canvas Width='110' Height='110' >
<Ellipse x:Name='BubbleOne2' Width='10' Height='10' Canvas.Left='78' Canvas.Top='78' Stretch='Fill' RenderTransformOrigin='0.5,0.5'>
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX='1' ScaleY='1'/>
</TransformGroup>
</Ellipse.RenderTransform>
<Ellipse.Fill>
<RadialGradientBrush RadiusX='0.477272' RadiusY='0.477268' Center='0.5,0.5' GradientOrigin='0.5,0.5'>
<GradientStop Color='#990D96D8' Offset='0'/>
<GradientStop Color='#000D96D8' Offset='1'/>
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
<Ellipse x:Name='BubbleTwo2' Width='10' Height='10' Canvas.Left='90' Canvas.Top='50' Stretch='Fill' RenderTransformOrigin='0.5,0.5' >
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX='1' ScaleY='1'/>
</TransformGroup>
</Ellipse.RenderTransform>
<Ellipse.Fill>
<RadialGradientBrush RadiusX='0.477272' RadiusY='0.477268' Center='0.5,0.5' GradientOrigin='0.5,0.5'>
<GradientStop Color='#990D96D8' Offset='0'/>
<GradientStop Color='#000D96D8' Offset='1'/>
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
<Ellipse x:Name='BubbleThree2' Width='10' Height='10' Canvas.Left='78' Canvas.Top='22' Stretch='Fill' RenderTransformOrigin='0.5,0.5'>
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX='1' ScaleY='1'/>
</TransformGroup>
</Ellipse.RenderTransform>
<Ellipse.Fill>
<RadialGradientBrush RadiusX='0.477272' RadiusY='0.477268' Center='0.5,0.5' GradientOrigin='0.5,0.5'>
<GradientStop Color='#990D96D8' Offset='0'/>
<GradientStop Color='#000D96D8' Offset='1'/>
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
<Ellipse x:Name='BubbleFour2' Width='10' Height='10' Canvas.Left='50' Canvas.Top='10' Stretch='Fill' RenderTransformOrigin='0.5,0.5' >
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX='1' ScaleY='1'/>
</TransformGroup>
</Ellipse.RenderTransform>
<Ellipse.Fill>
<RadialGradientBrush RadiusX='0.477272' RadiusY='0.477268' Center='0.5,0.5' GradientOrigin='0.5,0.5'>
<GradientStop Color='#990D96D8' Offset='0'/>
<GradientStop Color='#000D96D8' Offset='1'/>
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
<Ellipse x:Name='BubbleFive2' Width='10' Height='10' Canvas.Left='22' Canvas.Top='22' Stretch='Fill' RenderTransformOrigin='0.5,0.5' >
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX='1' ScaleY='1'/>
</TransformGroup>
</Ellipse.RenderTransform>
<Ellipse.Fill>
<RadialGradientBrush RadiusX='0.477272' RadiusY='0.477268' Center='0.5,0.5' GradientOrigin='0.5,0.5'>
<GradientStop Color='#990D96D8' Offset='0'/>
<GradientStop Color='#000D96D8' Offset='1'/>
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
<Ellipse x:Name='BubbleSix2' Width='10' Height='10' Canvas.Left='10' Canvas.Top='50' Stretch='Fill' RenderTransformOrigin='0.5,0.5' >
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX='1' ScaleY='1'/>
</TransformGroup>
</Ellipse.RenderTransform>
<Ellipse.Fill>
<RadialGradientBrush RadiusX='0.477272' RadiusY='0.477268' Center='0.5,0.5' GradientOrigin='0.5,0.5'>
<GradientStop Color='#990D96D8' Offset='0'/>
<GradientStop Color='#000D96D8' Offset='1'/>
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
<Ellipse x:Name='BubbleSeven2' Width='10' Height='10' Canvas.Left='22' Canvas.Top='78' Stretch='Fill' RenderTransformOrigin='0.5,0.5' >
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX='1' ScaleY='1'/>
</TransformGroup>
</Ellipse.RenderTransform>
<Ellipse.Fill>
<RadialGradientBrush RadiusX='0.477272' RadiusY='0.477268' Center='0.5,0.5' GradientOrigin='0.5,0.5'>
<GradientStop Color='#990D96D8' Offset='0'/>
<GradientStop Color='#000D96D8' Offset='1'/>
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
<Ellipse x:Name='BubbleEight2' Width='10' Height='10' Canvas.Left='50' Canvas.Top='90' Stretch='Fill' RenderTransformOrigin='0.5,0.5' >
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX='1' ScaleY='1'/>
</TransformGroup>
</Ellipse.RenderTransform>
<Ellipse.Fill>
<RadialGradientBrush RadiusX='0.477272' RadiusY='0.477268' Center='0.5,0.5' GradientOrigin='0.5,0.5'>
<GradientStop Color='#990D96D8' Offset='0'/>
<GradientStop Color='#000D96D8' Offset='1'/>
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
</Canvas>
<TextBlock FontFamily='Verdana' FontSize='11' Text='0%' x:Name='LoadingText' HorizontalAlignment='Center' VerticalAlignment='Center'/>

关于silverlight - 在哪里可以找到 Silverlight 标准加载动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1312478/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com