using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace Luento3 { public delegate void Tormays(object sender, EventArgs e); class Auto : PictureBox { Timer timeri = new System.Windows.Forms.Timer(); private int nopeus = 10; public event Tormays tapahtuma; public Auto(Form p) { Image = global::Luento3.Properties.Resources.car; Random rand = new Random(); Location = new System.Drawing.Point(50, rand.Next(p.Size.Height)); Size = new System.Drawing.Size(59, 39); SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; TabStop = false; Visible = true; Parent = p; timeri.Enabled = true; timeri.Tick += new System.EventHandler(ajastin); } private void ajastin(object sender, EventArgs e) { if (Right > Parent.Size.Width) { nopeus = -nopeus; tapahtuma(this, e); } if (Left < 0) nopeus = -nopeus; Left = Location.X + nopeus; } } }