private void btnKüpHacimHesapla_Click(object sender, EventArgs e)
        {
            Hacim hcmKüp = new Hacim(Convert.ToInt32(txtKüp.Text));
            int sonuc = hcmKüp.HacimHesaplaKüp();
            txtSonuc.Text = sonuc.ToString();


        }
 private void btnHesapla_Click(object sender, EventArgs e)
 {
     Hacim hcm = new Hacim(Convert.ToInt32(txtUzunKenar.Text),
                           Convert.ToInt32(txtKisaKenar.Text),
                           Convert.ToInt32(txtAyritUzunluk.Text));
     int sonuc =hcm.HacimHesapla();
     txtSonuc.Text = sonuc.ToString();
    
 }