0

ウィンドウが閉じられるまで、楕円の幅を永遠にアニメーション化する次のコードがあります。ただし、スローしXamlParseExceptionErrorます。どこで間違いを犯したのか誰か指摘してもらえますか?

`

        </TextBlock>

        <TextBlock x:Uid="ProductName" Localization.Attributes="$Content(Readable Unmodifiable)">
            <TextBlock.ToolTip>
                <TextBlock x:Uid="ProductNameTip" Localization.Attributes="$Content(ToolTip Readable Modifiable)">
                    A photo editor that will make everyone look beautiful
                </TextBlock>
            </TextBlock.ToolTip>
            Amazing Photo Editor
        </TextBlock>

        <Ellipse Name="Circle" 
                 Width="100" 
                 Height="100" 
                 Fill="Red">
            <Ellipse.Triggers>
                <EventTrigger RoutedEvent="Ellipse.Loaded">
                    <BeginStoryboard>
                        <Storyboard>
                            <DoubleAnimation Storyboard.Target="Circle" 
                                             Storyboard.TargetProperty="Width" 
                                             From="1" 
                                             To="100" 
                                             Duration="0:0:5" 
                                             AutoReverse="True" 
                                             RepeatBehavior="Forever">

                            </DoubleAnimation>
                        </Storyboard>
                    </BeginStoryboard>
                </EventTrigger>
            </Ellipse.Triggers>
        </Ellipse>
    </StackPanel>
</Grid>

`

4

1 に答える 1

1

Storyboard.TargetName Attached Propertyの代わりに使用しStoryboard.Targetます。

<DoubleAnimation Storyboard.TargetName="Circle"
于 2013-01-19T18:44:11.610 に答える