Msn titretme yapmaya çalışıyordum ben yanlış yapmışım onuda çözdüm hocam yazmayı unutmuşum

        private void button1_Click(object sender, EventArgs e)
        {
            tmr.Enabled = true;
            tmr3.Start();
        }


        int x = 0;
        int sol = 100;
        int sag = 100;
       private void tmr3_Tick(object sender, EventArgs e)
        {
                if (x % 2 == 0)
                {
                    this.Left += 5;
                    this.Top += 5;
                }
                else
                {
                    this.Left = sol;
                    this.Top = sag;
                }
                x++;

                if (x == 10 )
                    tmr3.Stop();
        }
c# epey zormuş ama devam sonuna kadar