Advertisement
0rioNN

Untitled

May 18th, 2014
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.65 KB | None | 0 0
  1. package chessgame;
  2.  
  3. import javax.swing.*;
  4. import java.awt.*;
  5.  
  6. public class Chess {
  7.    
  8.     private JFrame f;
  9.     private JPanel p;
  10.     private JButton b1;
  11.     private JLabel lab;
  12.    
  13.    
  14.    
  15.     public Chess(){
  16.        
  17.         gui();
  18.        
  19.     }
  20.    
  21.     public void gui(){
  22.        
  23.         f = new JFrame("Jogo de Xadrez");
  24.         f.setVisible(true);
  25.         f.setSize(600,600);
  26.         f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  27.        
  28.        
  29.         p = new JPanel();
  30.         p.setBackground(Color.GRAY);
  31.        
  32.         b1 = new JButton("PLayer 1 VS Player 2");
  33.         lab = new JLabel("lol");
  34.        
  35.         p.add(lab);
  36.         p.add(b1);
  37.        
  38.        
  39.         f.add(p);
  40.        
  41.     }
  42.    
  43.    
  44.     public static void main (String [] args){
  45.        
  46.         new Chess();
  47.     }
  48.    
  49.    
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement