- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的生活中,我似乎找不到标准的 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/
我正在尝试从 F# 编译代码以在 Silverlight 中使用。我编译: --noframework --cliroot "C:\program Files\Microsoft Silverligh
我正在为 Silverlight 安装一个编程环境并试图理顺需要安装的内容,感谢反馈: 在 http://silverlight.net/GetStarted ,第一点允许您安装“ Silverlig
Silverlight RIA 值得学习还是我应该坚持普通的 Silverlight? 背景: 我在 WPF 中做了几个小应用程序 我有 12 年的 VB6/WinForms 模型商业应用经验 我希望
我已经熟悉 Silverlight 编程,但没有任何 GIS 经验。 我作为 Silverlight 开发人员的角色只是显示现有的 GIS 数据。 如果你们有任何经验arcGIS silverligh
我需要在我的 Silverlight 应用程序中创建滚动选取框。选取框需要从右向左滚动。当它完成滚动时,它需要自动重新启动 诀窍是,我需要使用 ItemsControl,因为项目将在滚动时添加到列表中
Silverlight 导航模板在浏览器外运行时是否有效? 最佳答案 当然可以。 并且您可以使用 NavigationServices 函数来创建自定义的“后退”或“前进”按钮 很好的例子:Link
用户通过导航到给定的 URL 在他们的浏览器中启动 Silverlight 应用程序。 然后用户打开另一个浏览器并通过导航到相同的 URL 启动相同的 Silverlight 应用程序。 应用程序的第
Silverlight 4 程序集二进制文件是否与 Silverlight 5 兼容。SL4 程序集是否“在 SL5 运行时中运行”?如果兼容,是否100%兼容。您应该能够在您的 SL5 项目中使用第
很难说出这里问的是什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或言辞激烈,无法以目前的形式合理回答。如需帮助澄清此问题以便可以重新打开,visit the help center . 9年前关闭
我正在寻找是否可以在可以在 application.resources 中设置然后在整个应用程序中使用的 Silverlight 控件中使用应用程序范围的字体。他们不需要指定有关字体的其他内容,例如粗
我正在使用Silverlight4。我想用一个可用字体列表填充组合框。我搜索过很多东西,找不到解决方法。似乎有很多死胡同。五月份曾提出过类似的问题,但没有合适的答案。 当然不是不可能吗? 最佳答案 如
我正在为 Silverlight 很好地实现弱事件模式以避免内存泄漏。 似乎有一些实现,但代码并非微不足道,很难知道哪个是正确的。我找不到微软的任何官方推荐。 如果可能的话,我追求简单的语法。 干杯。
Silverlight 应用程序是在您每次访问该站点时都会下载,还是会检查版本/大小信息并仅下载较新版本的文件? 最佳答案 Silverlight 2 在这方面没有什么特别的,我读过的最简洁的解释来自
我正在尝试在 silverlight 中使用样式触发器,如下所示:
我想尝试制作一个包含多个 Silverlight 画廊中的图片的 asp 网站。我想这样做的原因是我想要这样的东西: Text describing some places. Gallery with
WPF 3.5 有 PresentationTraceSources用于诊断和WPFPerf用于性能和数据绑定(bind)诊断。 Silverlight 是否有等效的工具/库? 最佳答案 尽管我已将
我有一个表示有向图的数据结构,我正在寻找一个好的 Silverlight 可视化,以允许我从一个节点导航到另一个节点,最好有一些漂亮的动画。 有没有人知道这种显示的任何好的 UI 控件或框架?甚至来自
我可以将byte []转换为图像: byte[] myByteArray = ...; // ByteArray to be converted MemoryStream ms = new Memo
我有多个Silverlight项目,希望使用相同的样式,配色方案和一些模板化对象。 我该如何完成? 最佳答案 一种实现方法是创建一个新的silverlight类库,该库将是您共享的主题/样式程序集,其
我正在尝试使用 SLLAUNCHER.EXE 启动已安装的 SL Out-of-Browser App。运行以下命令后,桌面上的 MyApp 启动图标就消失了。如果我在没有覆盖开关的情况下尝试它,则不
我是一名优秀的程序员,十分优秀!