示例#1
0
        private void Btn_comprar_Click(object sender, EventArgs e)
        {
            frm_boletos nuevo = new frm_boletos(this, funcion, precio_formato * precio_experiencia);

            nuevo.Show();
            this.Hide();
        }
 public frm_asientos(frm_boletos boletos, string funcion, int[] cantidad, double[] sub)
 {
     InitializeComponent();
     this.boletos = boletos;
     //JOSUE ARREGLO DE LOS BOTONES DE LOS ASIENTOS
     botones       = new Button[] { A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, B1, B2, B3, B4, B5, B6, B7, B8, B9, B10, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10 };
     this.cantidad = cantidad;
     this.funcion  = funcion;
     this.sub      = sub;
     //JOSUE CONTADOR DE ASIENTOS RESTANTES POR SELECCIONAR
     button3.Text = String.Format("{0}", cantidad[2] + cantidad[1] + cantidad[0] - cnt);
     asientosReservados();
 }