private void btnBestelBV_Click(object sender, EventArgs e) { if (lbFilms.SelectedItem is Bioscoopvertoning) { Bioscoopvertoning selectedBV = (Bioscoopvertoning)lbFilms.SelectedItem; Stoel selectedStoel = (Stoel)lbStoel.SelectedItem; Bestelling bestelling = new Bestelling(lid, selectedBV, selectedStoel); MessageBox.Show("Betaal €" + bestelling.Price); ShowInfo(); } else { MessageBox.Show("Deze film draait momenteel niet in de bioscoop."); } }
public void GenereerStoelen(int aantal_rijen_stoelen, int aantal_stoelen_per_rij, int aantal_VIP_rijen, int aantal_VIP_per_rij) { for (int i = 1; i <= aantal_rijen_stoelen; i++) { for (int j = 1; j <= aantal_stoelen_per_rij; j++) { Stoel s = new Stoel(i, j, false); Stoelen.Add(s); } } for (int k = 1; k <= aantal_VIP_rijen; k++) { for (int l = 1; l <= aantal_VIP_per_rij; l++) { Stoel s = new Stoel(k + aantal_rijen_stoelen, l, true); Stoelen.Add(s); } } }
private void btnBestelBV_Click(object sender, EventArgs e) { if (lbFilms.SelectedItem is Bioscoopvertoning) { if (lbStoel.SelectedItem == null) { MessageBox.Show("Selecteer een stoel"); return; } Bioscoopvertoning selectedBV = (Bioscoopvertoning)lbFilms.SelectedItem; Stoel selectedStoel = (Stoel)lbStoel.SelectedItem; Bestelling bestelling = new Bestelling(lid, selectedBV, selectedStoel); MessageBox.Show("Betaal €" + bestelling.Price); ShowInfo(); } else { MessageBox.Show("Selecteer een vertoning uit de lijst met films"); } }