17 Mart 2015 Salı

C# Timer İle Label Hareket Ettirme





Kodları:


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace timerlabellocation
{
    public partial class Form1 : Form
    {
        int a = 0;
        int b = 120;
        Boolean kontrol = true;
        Boolean ykontrol = true;
        public Form1()
        {
            InitializeComponent();
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            if (kontrol == true)
            {
                this.Text = "Sağa doğru gidiyoruz";
                a = a + 2;
                label1.Location = new Point(a, b);
                if (a == 200)
                {
                  
                    if(ykontrol==true)
                      b = b - 10;
                    if (b == 0)
                    {
                      
                        ykontrol = false;
                    }
                 
                    kontrol = false;
                }
            }
            if (kontrol == false)
            {
                this.Text = "Sola doğru gidiyoruz";
                a = a - 2;
                label1.Location = new Point(a, b);
                if (a == 0)
                {
                  
                    if (ykontrol == false)
                        b = b + 10;
                    if (b == 120)
                    {
                        
                        ykontrol = true;
                    }
         
                    kontrol = true;
                }
            }

           
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            timer1.Enabled = true;
            timer1.Start();
        }
    }
}



Hazırlayan: Adil AYGÜN

Hiç yorum yok: