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>
アニメーションを作成して画像に接続する方法を教えてください。
下手な英語ですみません