Cambio de JFrame a JPanel de SeleccionarAsientoV
This commit is contained in:
parent
90bca1959e
commit
632f5fac0c
|
@ -1,7 +1,7 @@
|
|||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
|
||||
public class SeleccionarAsientoV extends JFrame {
|
||||
public class SeleccionarAsientoV extends JPanel {
|
||||
|
||||
private JPanel pSuperior = new JPanel(new FlowLayout(FlowLayout.LEFT));
|
||||
private JButton bRegresar = new JButton("Regresar.");
|
||||
|
@ -21,14 +21,12 @@ public class SeleccionarAsientoV extends JFrame {
|
|||
|
||||
|
||||
public SeleccionarAsientoV(Asiento [][] parAsientos) throws HeadlessException {
|
||||
super("Seleccionar Asiento");
|
||||
this.setLayout(new BorderLayout());
|
||||
|
||||
asientos = parAsientos;
|
||||
|
||||
agregarComponentes();
|
||||
crearCeldas(7,10);
|
||||
iniciar();
|
||||
}
|
||||
|
||||
public void agregarComponentes(){
|
||||
|
@ -125,11 +123,4 @@ public class SeleccionarAsientoV extends JFrame {
|
|||
lSeleccionar.setText("Asientos seleccionados: " + noAsientosSeleccionados);
|
||||
lTotal.setText("Total: " + total + "$");
|
||||
}
|
||||
|
||||
public void iniciar(){
|
||||
this.setBounds(100,100,700,700);
|
||||
//this.setResizable(false);
|
||||
this.setVisible(true);
|
||||
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue