예제 #1
0
파일: Form1.cs 프로젝트: mtsdmr9/_26-04-16_
 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();
 }
예제 #2
0
파일: Form1.cs 프로젝트: mtsdmr9/_26-04-16_
        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();
                }
            }
        }