Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I´m trying to do a sequential animation of my objects in my wrappanel that is inside a listbox. Everything works fine except that I can't animate the position of the canvas inside. Opacity animation works.

xaml:

               <Grid x:Name="GrindFavorites" Visibility="Visible">
                <ListBox x:Name="ListboxFavorites" SelectionChanged="ListboxFavorites_OnSelectionChanged" >
                    <ListBox.ItemsPanel>
                        <ItemsPanelTemplate>
                            <toolkit:WrapPanel ItemHeight="140" ItemWidth="200"/>
                        </ItemsPanelTemplate>
                    </ListBox.ItemsPanel>
                    <ListBox.ItemTemplate>
                        <DataTemplate>
                            <StackPanel x:Name="StackTest">
                              <Grid Width="185" Height="125">
                                <Canvas x:Name="FavCanvas"  Background="White" Height="125" Width="185" >
                                    <Grid Width="185" Height="125">
                                        <TextBlock TextAlignment="Center" Margin="0,0,0,0" Foreground="Black" HorizontalAlignment="Center" VerticalAlignment="Center" Text="{Binding Name}"/>
                                    </Grid>    
                                    <Canvas.Resources>
                                            <Storyboard x:Name="FavAnimation">
                                                <DoubleAnimation Storyboard.TargetProperty="Opacity" From="0.7" To="1" Duration="00:00:00.20" />
                  Nothing happens --->         <DoubleAnimation Storyboard.TargetProperty="(Canvas.Left)" From="200" To="0" Duration="00:00:01.50" />
                                            </Storyboard>
                                    </Canvas.Resources>
                                </Canvas>
                                </Grid>
                            </StackPanel>
                        </DataTemplate>
                    </ListBox.ItemTemplate>
                </ListBox>
            </Grid>

C# Finding element in listbox to animate

SearchVisualTree(ListboxFavorites)

private void SearchVisualTree(DependencyObject targetElement)
    {
        Dispatcher.BeginInvoke(() => { 
        var count = VisualTreeHelper.GetChildrenCount(targetElement);
        if (count == 0)
        {
            return;
        }

        for (int i = 0; i < count; i++)
        {
            var child = VisualTreeHelper.GetChild(targetElement, i);
            var item = child as Canvas;
            if (item != null)
            {
                var targetItem = item;
                StartAnimationFromResource("FavAnimation", targetItem);
            }
            else
            {
                SearchVisualTree(child);
            }

        }
        });
    }

Starting animation sequentially

private void StartAnimationFromResource(string animationName, FrameworkElement element)
    {
        var sb = element.Resources[animationName] as Storyboard;
        if (sb == null) return;

        sb.Stop();
        Storyboard.SetTarget(sb, element);
        sb.BeginTime = loadCounter;
        sb.Begin();


        loadCounter = loadCounter.Add(new TimeSpan(0, 0, 0, 0, msLoadDelay));
        animationCounter++;
        if (animationCounter >= ListboxFavorites.Items.Count)
        {
            loadCounter = new TimeSpan(0, 0, 0, 0, msLoadDelay);
            animationCounter = 0;
        }
    }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.