需要在Windows Phone 7中转换矩形的颜色

Need to transform a rectangle#39;s color in Windows Phone 7(需要在Windows Phone 7中转换矩形的颜色)
本文介绍了需要在Windows Phone 7中转换矩形的颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个矩形,我有一个情节提要:

<Storyboard x:Key="PressAndHoldColorBar">
        <ColorAnimationUsingKeyFrames Duration="0:0:10" FillBehavior="Stop" Storyboard.TargetName="rectWarning" Storyboard.TargetProperty="Fill">
            <LinearColorKeyFrame KeyTime="0:0:0" Value="Green" />
            <LinearColorKeyFrame KeyTime="0:0:7" Value="Yellow" />
            <LinearColorKeyFrame KeyTime="0:0:10" Value="Red" />
        </ColorAnimationUsingKeyFrames>
    </Storyboard>

<Rectangle Height="100" HorizontalAlignment="Left" Margin="12,328,0,0" Name="rectWarning" Stroke="Black" StrokeThickness="1" VerticalAlignment="Top" Width="200">

我希望在按下另一个按钮时发生此颜色更改,因此我尝试以编程方式调用代码:

s = (Storyboard)this.Resources["PressAndHoldColorBar"];
        s.Begin();

我已经将其范围缩小到第一个代码片段中的Storyboard.TargetName和TargetProperty(我想)。我只是需要帮助找出要做什么才能让它完全正常工作。

推荐答案

算出来了:

<Storyboard x:Name="PressAndHoldColorBar">
        <ColorAnimationUsingKeyFrames Duration="0:0:10" FillBehavior="Stop" Storyboard.TargetName="rectWarning" 
                                      Storyboard.TargetProperty="(Fill).(SolidColorBrush.Color)">
            <LinearColorKeyFrame KeyTime="0:0:0" Value="Green" />
            <LinearColorKeyFrame KeyTime="0:0:7" Value="Yellow" />
            <LinearColorKeyFrame KeyTime="0:0:10" Value="Red" />
        </ColorAnimationUsingKeyFrames>
    </Storyboard>

您必须使用(Fill).(SolidColorBrush.Color)。它不像(Shape.Fill)。

这篇关于需要在Windows Phone 7中转换矩形的颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)