1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
//Mes panel
JPanel panelEntree = creePanelEntree();
JPanel panelSortie = creePanelSortie();
panelSortie.addFocusListener(new FocusListener(){
public void focusGained(FocusEvent arg0) {
System.out.println("trarrzaz");
//met le focus sur la combobox
comboFeur.requestFocus();
}
public void focusLost(FocusEvent arg0) {
//rien faire
}
});
//Mes onglets
JTabbedPane tabbedPane = new JTabbedPane();
tabbedPane.addTab("Recettes",panelEntree);
tabbedPane.addTab("Dépenses",panelSortie); |