mirror of
https://gitlab.com/tutorial-java-rafa-munoz/tutorial-java-2024-25/tutorialjava2024-25.git
synced 2025-11-09 18:03:09 +01:00
feat(examen 9-5-25): agregado segundo panel
This commit is contained in:
@@ -53,10 +53,10 @@ public class VentanaPrincipal extends JFrame {
|
||||
contentPane.add(tabbedPane, BorderLayout.CENTER);
|
||||
|
||||
PanelGestionConciertos panel1 = new PanelGestionConciertos();
|
||||
tabbedPane.addTab("New tab", null, panel1, null);
|
||||
tabbedPane.addTab("Gestión de conciertos", null, panel1, null);
|
||||
|
||||
JPanel panel2 = new JPanel();
|
||||
tabbedPane.addTab("New tab", null, panel2, null);
|
||||
PanelFiltradoConciertos panel2 = new PanelFiltradoConciertos();
|
||||
tabbedPane.addTab("Filtrado de conciertos", null, panel2, null);
|
||||
|
||||
JPanel panel3 = new JPanel();
|
||||
tabbedPane.addTab("New tab", null, panel3, null);
|
||||
|
||||
Reference in New Issue
Block a user