Ver Mensaje Individual
  #4 (permalink)  
Antiguo 26/06/2008, 21:26
BAR4KA
 
Fecha de Ingreso: marzo-2008
Mensajes: 16
Antigüedad: 16 años, 9 meses
Puntos: 0
Respuesta: Preguntas basicas de Java.

Aca con este codigo te aparece la ventana de OK que pedias, hace unicamente eso, si le das click en el boton se cierra...


Código:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class PantalladeOK {
	private JFrame ventanaOK;
	private JButton botonOK;
	
	public PantalladeOK() { 

		ventanaOK = new JFrame("Ventana con boton OK");	
		ventanaOK.setLayout(null);
		ventanaOK.setBackground(Color.blue);		
		ventanaOK.setBounds(200,100,300,200);

		botonOK = new JButton("OK");
		botonOK.setFont(new Font("Dialog",Font.BOLD,14));
		botonOK.setForeground(Color.white);
		botonOK.setBackground(new Color(79,129,189));
		botonOK.setBounds(100,50,100,30);

		ventanaOK.add(botonOK);
		ventanaOK.setVisible(true);		

		ventanaOK.addWindowListener (new WindowAdapter(){
      		public void windowClosing(WindowEvent e){
      			System.exit(0);

      		}}
		);


		botonOK.addActionListener (new ActionListener(){
	        public void actionPerformed(ActionEvent e){
	        	System.exit(0);
	        }
	    });
 
 }
	public static void main(String args[]){
		new PantalladeOK();
		}
  
}