Guest User

Untitled

a guest
Jan 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. public class teste extends JFrame{
  2. ImageIcon imgFundo = new ImageIcon(getClass().getResource("fantasy-2861815_960_720.jpg"));
  3. JLabel lblFundo = new JLabel(imgFundo);
  4.  
  5. public void janela1() {
  6. setSize(800,600);
  7. setVisible(true);
  8. setLocationRelativeTo(null);
  9. setResizable(false);
  10. setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  11. lblFundo.setSize(10,10);
  12. add(lblFundo);
  13.  
  14. }
  15.  
  16.  
  17. public static void main(String[] args) {
  18. teste t = new teste();
  19. t.janela1();
  20.  
  21.  
  22. }
Add Comment
Please, Sign In to add comment