LightSoul94
Utente Attivo
- Messaggi
- 256
- Reazioni
- 16
- Punteggio
- 38
Salve a tutti, stavo compilando un semplice algoritmo java che apre un Frame che poi lo chiude cliccando su un JButton.
Il compilatore non mi da errori, eppure si apre il frame ma non c'è il jButton.
Ho tentato anche a renderlo visibile ma non ha funzionato:
Il compilatore non mi da errori, eppure si apre il frame ma non c'è il jButton.
Ho tentato anche a renderlo visibile ma non ha funzionato:
Codice:
import javax.swing.JFrame;
import javax.swing.JButton;
public class MySoft
{
public static void main(String[] args) {
JFrame frame = new JFrame("My Software");
frame.setSize(500, 500);
JButton button1 = new JButton("OK");
button1.setSize(50, 50);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
button1.setVisible(true);
}
}
Ultima modifica: