Dudas con JFrame JPanel
Como puedo acer el botton asta abaj0o.. ?? :S
import java.util.*;
import java.awt.*;
import javax.swing.*;
public class Gauss{
public static void main ( String []args){
Vector es=new Vector();
Color nose=new Color(34,76,58);
JFrame here=new JFrame("METODO DE GAUSS");
JPanel aqui=new JPanel();
//JPanel aki=new JPanel();
//BorderLayout para=new BorderLayout();
//aqui.setLayout(para);
JButton hacerlo=new JButton();
JComboBox cual1=new JComboBox(es);
JComboBox cual2=new JComboBox(es);
JComboBox cual3=new JComboBox(es);
JComboBox cual4=new JComboBox(es);
TextField primero = new TextField();
TextField segundo = new TextField();
TextField tercero = new TextField();
TextField cuarto = new TextField();
JLabel a=new JLabel ("a");
JLabel b=new JLabel("b");
JLabel c=new JLabel("c");
JLabel d=new JLabel("d");
JLabel igual=new JLabel("=");
igual.setBackground(Color.BLUE);
JLabel respuesta=new JLabel();
aqui.setBackground(Color.PINK);
//aki.setBackground(Color.YELLOW);
cual1.setBackground(Color.PINK);
cual2.setBackground(Color.PINK);
cual3.setBackground(Color.PINK);
cual4.setBackground(Color.PINK);
respuesta.setBackground(nose);
es.add('+');
es.add('-');
aqui.add(cual4);
//here.add(aki);
here.add(aqui);
aqui.add(primero);
aqui.add(a);
aqui.add(cual1);
aqui.add(segundo);
aqui.add(b);
aqui.add(cual2);
aqui.add(tercero);
aqui.add(c);
aqui.add(cual3);
aqui.add(cuarto);
aqui.add(d);
aqui.add(igual);
aqui.add(respuesta);
aqui.add(hacerlo, BorderLayout.SOUTH); // no lo asee, o no me sale
here.setSize(480,200);
here.setVisible(true);
here.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
import java.util.*;
import java.awt.*;
import javax.swing.*;
public class Gauss{
public static void main ( String []args){
Vector es=new Vector();
Color nose=new Color(34,76,58);
JFrame here=new JFrame("METODO DE GAUSS");
JPanel aqui=new JPanel();
//JPanel aki=new JPanel();
//BorderLayout para=new BorderLayout();
//aqui.setLayout(para);
JButton hacerlo=new JButton();
JComboBox cual1=new JComboBox(es);
JComboBox cual2=new JComboBox(es);
JComboBox cual3=new JComboBox(es);
JComboBox cual4=new JComboBox(es);
TextField primero = new TextField();
TextField segundo = new TextField();
TextField tercero = new TextField();
TextField cuarto = new TextField();
JLabel a=new JLabel ("a");
JLabel b=new JLabel("b");
JLabel c=new JLabel("c");
JLabel d=new JLabel("d");
JLabel igual=new JLabel("=");
igual.setBackground(Color.BLUE);
JLabel respuesta=new JLabel();
aqui.setBackground(Color.PINK);
//aki.setBackground(Color.YELLOW);
cual1.setBackground(Color.PINK);
cual2.setBackground(Color.PINK);
cual3.setBackground(Color.PINK);
cual4.setBackground(Color.PINK);
respuesta.setBackground(nose);
es.add('+');
es.add('-');
aqui.add(cual4);
//here.add(aki);
here.add(aqui);
aqui.add(primero);
aqui.add(a);
aqui.add(cual1);
aqui.add(segundo);
aqui.add(b);
aqui.add(cual2);
aqui.add(tercero);
aqui.add(c);
aqui.add(cual3);
aqui.add(cuarto);
aqui.add(d);
aqui.add(igual);
aqui.add(respuesta);
aqui.add(hacerlo, BorderLayout.SOUTH); // no lo asee, o no me sale
here.setSize(480,200);
here.setVisible(true);
here.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
1 Respuesta
Respuesta de fbluisg
1