private void button1_Click(object sender, EventArgs e) { TheatreBooking theatre = new TheatreBooking(); theatre.Show(); this.Hide(); }
private void btnBookingReturn_Click(object sender, EventArgs e) { TheatreBooking theatre = new TheatreBooking(); theatre.Show(); this.Close(); }