i am showing a kind list using itemsControl
in my windows phone 7 app, but i am very new to animation
and storyBoard
etc
so my itemsControl
is given below
<ItemsControl x:Name="ListContainer">
<ItemsControl.ItemTemplate>
<DataTemplate x:Name="listTemplate">
<StackPanel Margin="25,0,0,0" MaxHeight="100">
<TextBlock Text="{Binding DisplayName}" FontSize="21"></TextBlock>
<Button Name="btn" Tag="{Binding ID}" Content="request" FontSize="21" Width="183" Click="btn_Click" Padding="0"></Button>
</StackPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
now i want to add an animation
so that whenever an item being adding to this itemsControl
it (item
) should be moving from bottom
to up
an d than add
i googled alot but not found any satiable answer, so if anyone having knowledge about storyboard and animation plZ put an answer -: thanks