Advertisement
0rioNN

Untitled

May 18th, 2014
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.48 KB | None | 0 0
  1. package xadrez;
  2.  
  3. import javax.*;
  4. import javax.swing.*;
  5.  
  6. import java.awt.*;
  7. import java.awt.event.*;
  8.  
  9.  
  10. public class xadrez{
  11.  
  12.     public JFrame frame_base;
  13.     public JPanel p_inicio, p_def, p_nome, p_jogo;
  14.     public JLabel ini_titulo, def_titulo, nome_titulo;
  15.     public JButton ini_vs, ini_def, ini_sair, nome_jogar;
  16.     public JTextField nome_p1, nome_p2;
  17.    
  18.     private void invisivel(){ // Classe Invisivel - Poe todos os paineis invisiveis
  19.          
  20.         p_inicio.setVisible(false);
  21.         p_def.setVisible(false);
  22.         p_nome.setVisible(false);
  23.         p_jogo.setVisible(false);
  24.        
  25.     }
  26.    
  27.     public void init() { //Inicialização dos Paineis
  28.        
  29.        
  30.         frame_base = new JFrame(" Jogo de Xadrez ");
  31.         frame_base.setVisible(true);
  32.         frame_base.setSize(600,600);
  33.         frame_base.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  34.        
  35.         p_inicio = new JPanel();
  36.         p_def = new JPanel();
  37.         p_nome = new JPanel();
  38.         p_jogo = new JPanel();
  39.  
  40.        
  41.         p_inicio.setBackground(Color.GRAY);
  42.  
  43.        
  44.        
  45.         frame_base.add(p_inicio);
  46.         frame_base.add(p_def);
  47.         frame_base.add(p_nome);
  48.         frame_base.add(p_jogo);
  49.        
  50.        
  51.        
  52.        
  53.         //Painel Inicio
  54.        
  55.          ini_titulo = new JLabel("Jogo de Xadrez");
  56.          ini_vs = new JButton (" Player 1 VS Player 2 ");
  57.          ini_def = new JButton (" Defenições ");
  58.          ini_sair = new JButton (" Sair ");
  59.          
  60.          p_inicio.add (ini_vs);
  61.          p_inicio.add (ini_def);
  62.          p_inicio.add (ini_sair);
  63.          
  64.          invisivel();
  65.          p_inicio.setVisible(true);
  66.        
  67.     }
  68.    
  69.    
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement