public void StopGrowing() { LifeTimer.Stop(); foreach (IGrowableGraphicChild child in panelNature.Controls) { child.StopGrowing(); } }
public void LifeForm() { LifeTimer.Interval = 600; LifeTimer.Tick += new EventHandler((object sender, EventArgs e) => { InviseForm(); LifeTimer.Stop(); }); LifeTimer.Start(); }