Bonjour

j'ai regardé pour changer mon Look & Feel

alors si vous regardez sur le KeyCode il me remonte l'erreur qu'il ne trouve pas mon look and feel avec UnsupportedLookAndFeelException

Le KeyCode

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import keycode.*;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import com.jgoodies.looks.plastic.PlasticXPLookAndFeel;
 
public class Main {
 
    /** Creates a new instance of Main */
    public static void main(String args[]) {
        try{
            UIManager.setLookAndFeel(new PlasticXPLookAndFeel());
        }catch(UnsupportedLookAndFeelException e){
            //...
        }
        Ihm monIhm = new Ihm();
    }
}