private void btnOyun_Click(object sender, EventArgs e) { bebis = new BabyAppClass(1000); foreach (Control c in this.Controls) { if (c is Button) { c.Enabled = true; } } btnOyun.Enabled = false; t1.Start(); }
private void t1_Tick(object sender, EventArgs e) { if (bebis != null) { if (bebis.Hayat > 5000) { lblDurum.Text = "bebiş ohh miss"; } if (bebis.Hayat > 1100 || bebis.Hayat < 1000) { lblDurum.Text = "çok yedirdin yada hiç yedirmedin"; } if (bebis.Hayat > 9000) { lblDurum.Text = "Wc ye koş"; } if (bebis.Hayat == 0) { t1.Stop(); MessageBox.Show("Bebiş ...."); foreach (Control c in this.Controls) { if (c is Button) { c.Enabled = false; } } this.bebis = null; } if (bebis != null) { this.bebis.Hayat -= 10; lblCan.Text = bebis.Hayat.ToString(); } } }