Yazı Font Küçült Yazı Font Büyült

Formunuzu Titretin

Formunuza 1 adet Timer ekleyin. Interval ini 20 yapın.

public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            timer1.Interval = 20;
            timer1.Start();
        }
        private void timer1_Tick(object sender, EventArgs e)
        {
         this.Top = Top + 50;
         this.Top = Top - 50;
         this.Left = Left - 50;
         this.Left = Top + 50;
        }

       
    }

//Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN