Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6109219
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:22:48+00:00 2026-05-23T14:22:48+00:00

I have to implement a road junction simple program. The junction’s image is set

  • 0

I have to implement a road junction simple program. The junction’s image is set as the Background Property of WPF Grid and I have ArrayLists inside a Queue to represent the color of each car, origin street and destination street.
Now, I need to animate the cars as moving ellipses and I need each car to start its movement after the privious car gets out of the screen.
I am using the following code but it only animates first car.
What is the solution?

private void button1_Click(object sender, RoutedEventArgs e)
    {

        for (int i = 0; i < queue.Count; i++)
        {

            ArrayList car = (ArrayList)queue[i];
            int id = Convert.ToInt32(car[0]);
            int color = Convert.ToInt32(car[1]);
            int from= Convert.ToInt32(car[2]);
            int to = Convert.ToInt32(car[3]);



                        Ellipse myEllipse = new Ellipse();
                        if (color == 0)
                        {
                            myEllipse.Stroke = System.Windows.Media.Brushes.Green;
                            myEllipse.Fill = System.Windows.Media.Brushes.Green;
                        }
                        else {
                            myEllipse.Stroke = System.Windows.Media.Brushes.Blue;
                            myEllipse.Fill = System.Windows.Media.Brushes.Blue;
                        }
                        myEllipse.HorizontalAlignment = HorizontalAlignment.Left;
                        myEllipse.VerticalAlignment = VerticalAlignment.Center;
                        myEllipse.Width = 45;
                        myEllipse.Height = 45;
                        myGrid.Children.Add(myEllipse);

                        DoubleAnimation da = new DoubleAnimation();
                        da.From = from;
                        da.To = to;
                        da.Duration = new Duration(TimeSpan.FromSeconds(1));
                        TranslateTransform tt = new TranslateTransform();
                        myEllipse.RenderTransform = tt;
                        tt.BeginAnimation(TranslateTransform.XProperty, da);
                         }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T14:22:49+00:00Added an answer on May 23, 2026 at 2:22 pm

    In WPF animation is is organized in other way.

    I would suggest you to look at Storyboard. Hope this will help you.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When doing databinding does one have to implement INotifyPropertyChanged on the datacontext in WPF?
I have implement one application in which four image button and on image button
In my application i have Implement to take image from Gallery. In that gallery
i have implement a simple web service the method signature of web service is:
I have to implement the VinPower application. They offer a Java version, a C
I have to implement MPI system in a cluster. If anyone here has any
I have to implement a middleware system for file sharing, and it has to
I have to implement a IExceptionHandler for the Enteprise Library 4.1. In my particular
I have to implement a one linked list but it should put object in
I have found that I often have to implement some sort of a scheduler

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.