Click here to Skip to main content
15,881,803 members
Articles / Multimedia / GDI+
Article

Simple Arrow Animation

Rate me:
Please Sign up or sign in to vote.
2.62/5 (7 votes)
20 Jun 2006CPOL1 min read 41.5K   565   10   1
This article and code explains how we can implement simple animations with out much technical skills.

Sample Image

Introduction

This simple program explains how simple animations are implemented, using for loops etc.

Background

Actually, this program was made for my Instant Messaging Client - Gaim. I needed to know when my boss come online and when he went offline. Gaim has a feature called "Buddy Pounce" which allows users to trigger events. As per my logic, when a user logs in, my application will give me a signal by flying an arrow from right-bottom to left-top. And when he goes offline, the arrow moves from left-top to right-bottom.

Using the code

The images are stored as resources, and I call them depending on the value of Status:

C#
this.BackgroundImage = Resource1.arrow2;

I have used this code to check whether the user is logged in or logged off. This accepts command line arguments. When Status is true, it means "LogIn", otherwise it means "LogOff".

C#
if (args.Length > 0)
{
    if (args[0].ToString() == "logoff") 
    {
        Status = false;
    }
}

The animation logic is placed inside a Timer_Tick method. Inside the method, the screen width and height are validated, so this program will work under all screen resolutions. An Application.DoEvents(); call is placed in between, to avoid system concentrating on this app only.

C#
private void timer1_Tick(object sender, EventArgs e)
{
    Application.DoEvents();
    
    if (Program.Status)
    {
        if (this.Top <= 0 || this.Left <= 0)
        {
            timer1.Enabled = false;
            Application.Exit();

        }
        this.Left -= 25;
        this.Top -= 15;
    }
    else
    {
        if (this.Top > Screen.GetBounds(this).Height || 
            this.Left > Screen.GetBounds(this).Width)
        {
            timer1.Enabled = false;
            Application.Exit();

        }
        this.Left += 25;
        this.Top += 15;
    }
}

History

This is my second version of this program but, this is my first version of this article.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect ORION INDIA SYSTEMS
India India
Praveen.V.Nair - aka NinethSense - PMP, Microsoft MVP - is working as a Head of Technology and Architecture at Orion India Systems, Kochi, India. He has been playing with electronics from the age of 10 and with computers from the age of 14. He usually blogs at http://blog.ninethsense.com/.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey26-Feb-12 21:18
professionalManoj Kumar Choubey26-Feb-12 21:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.