0

WinPhone で画像のアニメーションを作成するには? 20枚の画像を持つUniformGridを作成しました。次の操作を行う方法: 画像を押したとき - アニメーションを再生するには?

私のItemControl:

 <ItemsControl.ItemTemplate>
                <DataTemplate>
                    <Image x:Name="imgSquare"
                           Source="{Binding Path=Square.ImagePath, Converter={StaticResource PathWP}}"                          
                           VerticalAlignment="Center"
                           HorizontalAlignment="Center"
                           Width="110" 
                           Height="110" 
                           Stretch="Fill">

                        <i:Interaction.Triggers>
                            <i:EventTrigger EventName="MouseLeftButtonDown">
                                <commandbinding:MvxEventToCommand Command="{Binding Path=DataContext.ClickCommand, ElementName=ImageList}" CommandParameter="{Binding}"/>
                            </i:EventTrigger>                            
                        </i:Interaction.Triggers>

                        <i:Interaction.Behaviors>
                            <behaviors:ImageBehavior SelectedSquareModel="{Binding}"/>
                        </i:Interaction.Behaviors>

                    </Image>
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>

Behavior を使用してアニメーションを再生する予定です。

<i:Interaction.Behaviors>
     <behaviors:ImageBehavior SelectedSquareModel="{Binding}"/>
</i:Interaction.Behaviors>

アニメーションを作成して画像に接続する方法を教えてください。

下手な英語ですみません

4

1 に答える 1

0

「windows phoneのアニメーション」で検索してみてください。

多くの優れたチュートリアルが見つかります。そのほとんどは、次のような Blend と Behaviors を使用しています: http://www.jeffblankenburg.com/2010/10/29/31-days-of-windows-phone-day-29-animations/

コードで行われたボタンを押すアニメーションについては、http://www.youtube.com/watch?v=5k8SG82e1Rc の真ん中の数分を参照してください- ソースはルビでしたが!

于 2012-11-28T09:35:53.467 に答える