Guest User

Image Fond

a guest
Jul 16th, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.73 KB | None | 0 0
  1. JFrame frame = new JFrame("INTERNET V.ALPHA");
  2. frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  3.        
  4. JPanel contenuFenetre = new JPanel();
  5. contenuFenetre.setLayout(new BorderLayout());
  6.  
  7. JLabel titre = new JLabel ("INTERNET V.ALPHA",JLabel.CENTER);
  8. titre.setFont(new Font("Arial",Font.BOLD,60));
  9. contenuFenetre.add(titre,BorderLayout.NORTH);
  10.  
  11. JLabel loading = new JLabel ("LOADING...",JLabel.CENTER);
  12. loading.setFont(new Font("Arial",Font.BOLD,90));
  13. contenuFenetre.add(loading,BorderLayout.CENTER);
  14.        
  15. contenuFenetre.add(new JLabel(new ImageIcon("img\\background.jpg")),BorderLayout.PAGE_END);
  16.    
  17. frame.pack();
  18. frame.setContentPane(contenuFenetre);
  19. frame.setSize(800,600);
  20. frame.setResizable(false);
  21. frame.setVisible(true);
Advertisement
Add Comment
Please, Sign In to add comment