feat(examen 9-5-25): agregado segundo panel

This commit is contained in:
Rafa Muñoz
2025-06-09 14:01:23 +02:00
parent 5b3b41dba0
commit 3e859f9db9
4 changed files with 233 additions and 3 deletions

View File

@@ -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);