Compare commits
2 Commits
bfeb3e7be9
...
078256ac1b
Author | SHA1 | Date |
---|---|---|
David | 078256ac1b | |
David | 632f5fac0c |
|
@ -1,7 +1,7 @@
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
|
||||||
public class SeleccionarAsientoV extends JFrame {
|
public class SeleccionarAsientoV extends JPanel {
|
||||||
|
|
||||||
private JPanel pSuperior = new JPanel(new FlowLayout(FlowLayout.LEFT));
|
private JPanel pSuperior = new JPanel(new FlowLayout(FlowLayout.LEFT));
|
||||||
private JButton bRegresar = new JButton("Regresar.");
|
private JButton bRegresar = new JButton("Regresar.");
|
||||||
|
@ -21,14 +21,12 @@ public class SeleccionarAsientoV extends JFrame {
|
||||||
|
|
||||||
|
|
||||||
public SeleccionarAsientoV(Asiento [][] parAsientos) throws HeadlessException {
|
public SeleccionarAsientoV(Asiento [][] parAsientos) throws HeadlessException {
|
||||||
super("Seleccionar Asiento");
|
|
||||||
this.setLayout(new BorderLayout());
|
this.setLayout(new BorderLayout());
|
||||||
|
|
||||||
asientos = parAsientos;
|
asientos = parAsientos;
|
||||||
|
|
||||||
agregarComponentes();
|
agregarComponentes();
|
||||||
crearCeldas(7,10);
|
crearCeldas(7,10);
|
||||||
iniciar();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void agregarComponentes(){
|
public void agregarComponentes(){
|
||||||
|
@ -125,11 +123,4 @@ public class SeleccionarAsientoV extends JFrame {
|
||||||
lSeleccionar.setText("Asientos seleccionados: " + noAsientosSeleccionados);
|
lSeleccionar.setText("Asientos seleccionados: " + noAsientosSeleccionados);
|
||||||
lTotal.setText("Total: " + total + "$");
|
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