Ho un programma in cui si aggiunge un JPanel ad un JFrame:Aggiunta JPanel JFrame a
public class Test{
Test2 test = new Test2();
JFrame frame = new JFrame();
Test(){
...
frame.setLayout(new BorderLayout());
frame.add(test, BorderLayout.CENTER);
...
}
//main
...
}
public class Test2{
JPanel test2 = new JPanel();
Test2(){
...
}
}
ottengo un errore che mi chiedeva di cambiare il tipo di 'panel' a 'componenti'. Devo correggere questo errore? Vuole che lo faccia: Component panel = new Component();
devi inviare più codice dal momento che ciò che hai postato dovrebbe funzionare – Robin
JPanel è un componente. Il codice che hai appena incollato ti dà quell'errore? – Charles
Sembra che tu stia interpretando erroneamente il messaggio di errore; Qual è il messaggio di errore esatto? – rob