窗口

编写一个JFrame窗口,要求如下:

1.在窗口的NORTH区放置一个JPanel面板。

2.JPanel面板放置如下组件:

(1)JLable标签,标签文本为“兴趣”,右边接着是三个JCheckBox多选按钮,选项分别是“羽毛球”、“乒乓球”、“唱歌”。可以多选。

(2)JLabel标签,标签文本为“性别”,右边接着是两个JRadioButton按钮,选项分别是“男”、“女”。置成单选按钮,提示:使用ButtonGroup类 。

(3)兴趣标签及按钮放在第一行,性别标签及按钮放在第二行,分别借助两个行型Box容器安排这两行组件的位置,而两个行型Box容器放入JPanel面板中,要两行组件对齐的话,可以把JPanel面板设置两行一列的GridLayout布局。

3.窗口的CENTER区域放置一个JScrollPane容器,容器中放置一个JTextArea文本域。

4.当点击JCheckBox多选按钮和JRadioButton按钮时,如果是选中操作,则把选中项的文本显示在JTextArea文本域,每行显示一个选项。可以重复点击,每次点击都显示选中项。

import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;

public class JFrame2 extends JFrame{
	//组件
	JLabel JL1=new JLabel("兴趣");
	JLabel JL2=new JLabel("性别");
	JCheckBox JCh1=new JCheckBox("羽毛球");
	JCheckBox JCh2=new JCheckBox("乒乓球");
	JCheckBox JCh3=new JCheckBox("唱歌");
	JRadioButton JR1=new JRadioButton("男");
	JRadioButton JR2=new JRadioButton("女");
	JTextArea JT=new JTextArea(8,25);
	
	JFrame2(){
		init();
		setSize(300,300);//窗体大小
		setVisible(true);
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		//关闭窗体		
	}
	public void init() {
		Container contentPane=getContentPane();
		
		JPanel JP=new JPanel();
		JP.setLayout(new GridLayout(2,1));
		//实现单选
		ButtonGroup BG=new ButtonGroup();
		BG.add(JR1);
		BG.add(JR2);
		
		Box box1=Box.createHorizontalBox();
		Box box2=Box.createHorizontalBox();
		box1.add(JL1);
		box1.add(JCh1);
		box1.add(JCh2);
		box1.add(JCh3);
		box2.add(JL2);
		box2.add(JR1);
		box2.add(JR2);
		JP.add(box1);
		JP.add(box2);
		
		contentPane.add(JP,BorderLayout.NORTH);
		JScrollPane scrollpane=new JScrollPane(JT);
		//滚动条
		contentPane.add(scrollpane,BorderLayout.CENTER);
		
		//监听器
		JCh1.addActionListener(new onClickListener());
		JCh2.addActionListener(new onClickListener());
		JCh3.addActionListener(new onClickListener());
		JR1.addActionListener(new onClickListener());
		JR2.addActionListener(new onClickListener());
	}
	public class onClickListener implements ActionListener{
		public void actionPerformed(ActionEvent e) {
			String source;
			if(e.getSource()==JCh1) {
				if(JCh1.isSelected()==true) {
					source=JCh1.getText();
					JT.append(source+'\n');
				}
			}
			else if(e.getSource()==JCh2) {
				if(JCh2.isSelected()==true) {
					source=JCh2.getText();
					JT.append(source+'\n');
				}	
			}
			else if(e.getSource()==JCh3) {
				if(JCh3.isSelected()==true) {
					source=JCh3.getText();
					JT.append(source+'\n');
				}
				
			}
			else if(e.getSource()==JR1) {
				if(JR1.isSelected()==true) {
					source=JR1.getText();
					JT.append(source+'\n');
				}
			}
			else if(e.getSource()==JR2) {
				if(JR2.isSelected()==true) {
					source=JR2.getText();
					JT.append(source+'\n');
				}
			}
		}
	}
 public static void main(String[] args) {
	 new JFrame2();
 }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值