首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >情节提要更改目标WP7

情节提要更改目标WP7
EN

Stack Overflow用户
提问于 2012-06-26 03:34:31
回答 1查看 218关注 0票数 0

我必须从以下代码中进行哪些更改才能使故事板处理List<>中的图像,而不是使其处理椭圆?

代码语言:javascript
复制
<Storyboard x:Name="sbMoveImages">
        <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateX)" Storyboard.TargetName="ellipse">
            <EasingDoubleKeyFrame KeyTime="0" Value="-1"/>
            <EasingDoubleKeyFrame KeyTime="0:0:3" Value="641"/>
            <EasingDoubleKeyFrame KeyTime="0:0:5" Value="640"/>
        </DoubleAnimationUsingKeyFrames>
        <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateY)" Storyboard.TargetName="ellipse">
            <EasingDoubleKeyFrame KeyTime="0" Value="1"/>
            <EasingDoubleKeyFrame KeyTime="0:0:3" Value="0"/>
            <EasingDoubleKeyFrame KeyTime="0:0:5" Value="160"/>
        </DoubleAnimationUsingKeyFrames>
        <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.Rotation)" Storyboard.TargetName="ellipse">
            <EasingDoubleKeyFrame KeyTime="0:0:3" Value="0"/>
            <EasingDoubleKeyFrame KeyTime="0:0:5" Value="359.82"/>
        </DoubleAnimationUsingKeyFrames>
    </Storyboard>
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2012-06-26 19:28:53

只需更改Storyboard.TargetName就足够了。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/11196120

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档