package lezione_7;

import javax.swing.*;

public class EsempioPannello {

	public static void main(String[] args) {

		JFrame f = new JFrame("Questa è la mia finestra");
		f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		
		JPanel pannello = new JPanel();
		f.setContentPane(pannello);
			
		pannello.add(new JButton("IL PULSANTE"));
		pannello.add(new JLabel("Etichetta 1"));		
		pannello.add(new JLabel("Etichetta 2"));		
		pannello.add(new JLabel("Etichetta 3"));		
		
		f.pack();
		f.setVisible(true);
	}
}
