示例#1
0
        public void bookSeatNumber()
        {
            DialogResult dialogResult = MessageBox.Show("Remember You can't delete your ticket 12 hours before the show\nAre You sure? ", "Attention", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

            if (dialogResult == DialogResult.Yes)
            {
                MyCart mycart = new MyCart(U, selectedMovie, ticketType, SeatNocomboBox.Text);
                mycart.ShowDialog();
            }
        }
示例#2
0
        private void Cartbutton2_Click(object sender, EventArgs e)
        {
            MyCart myCart = new MyCart(U);

            myCart.ShowDialog();
        }