[*]前 次[#] [0]戻 [4]履歴
[1]最新 [2]最初 ▼[3]コメント欄
3: 02/20 11:00 ID:5A
import javax.swing.*;
import java.awt.*;
public class Jisshu3_03 extends JFrame{
public static void main(String args[]){
Jisshu3_03 j = new Jisshu3_03();
j.setVisible(true);
}
public Jisshu3_03(){
JPanel p1 = new JPanel();
JPanel p2 = new JPanel();
JPanel p3 = new JPanel(new GridLayout(3,1));
JPanel p4 = new JPanel(new GridLayout(2,1));
JLabel l1 = new JLabel("押せない");
JButton b1 = new JButton("押す");
JTextArea ta = new JTextArea(5,40);
JTextField tf = new JTextField(30);
JPasswordField pf = new JPasswordField(30);
JCheckBox cb1 = new JCheckBox("りんご");
JCheckBox cb2 = new JCheckBox("みかん");
JCheckBox cb3 = new JCheckBox("メロン");
ButtonGroup bg = new ButtonGroup();
JRadioButton rb1 = new JRadioButton("男",true);
JRadioButton rb2 = new JRadioButton("女");
bg.add(rb1);bg.add(rb2);
p1.add(l1);p1.add(tf);
p2.add(pf);p2.add(b1);
p3.add(cb1);p3.add(cb2);p3.add(cb3);
p1.add(rb1);p4.add(rb2);
this.getContentPane().add(p1,"North");
this.getContentPane().add(p2,"South");
this.getContentPane().add(p3,"East");
this.getContentPane().add(p4,"West");
this.getContentPane().add(ta,"Center");
pack();
[*]前 次[#]
▲[6]上に [8]最新レス [7]ピク一覧