作业: 编写一个JFrame窗口,要求如下: 1. 在窗口的NORTH区放置一个JPanel面板。 2. JPanel面板放置如下组件: (1) JLable标签,标签文本为“兴趣”,右边接着是三个J

作业:
编写一个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.*;
import java.awt.event.*;
import javax.swing.*;

public class JLayeredPaneDemo extends JFrame {
	JLabel interestLabel = new JLabel("兴趣");

	JCheckBox badmintonCheck = new JCheckBox("羽毛球");
	JCheckBox tableTtennisCheck = new JCheckBox("乒乓球");
	JCheckBox singCheck = new JCheckBox("唱歌");
	JLabel genderLabel = new JLabel("性别:");
	JRadioButton maleRadioButton = new JRadioButton("男");
	JRadioButton femaleRadioButton = new JRadioButton("女");
	JTextArea textArea = new JTextArea(5, 25);// 多行文本

	JLayeredPaneDemo() {
		super("事件编程演示程序");// 标题
		Container contentPane = getContentPane(); // 获取面板
		JPanel northPanel = new JPanel();// 创建中间容器面板,用来添加组件
		northPanel.setLayout(new GridLayout(2, 1)); // 面板设置网格布局
		Box box1 = Box.createHorizontalBox();// 创建两个水平盒子
		Box box2 = Box.createHorizontalBox();

		//
		box1.add(Box.createHorizontalStrut(3));// 水平支撑
		box1.add(interestLabel);// 添加兴趣标签
		box1.add(badmintonCheck);// 添加复选框
		box1.add(tableTtennisCheck);
		box1.add(singCheck);
		/
		ButtonGroup group = new ButtonGroup();
		group.add(maleRadioButton);
		group.add(femaleRadioButton);
		box2.add(Box.createHorizontalStrut(3));
		box2.add(genderLabel);// 添加性别标签
		box2.add(maleRadioButton);
		box2.add(femaleRadioButton);

		northPanel.add(box1);
		northPanel.add(box2);
		contentPane.add(northPanel, BorderLayout.NORTH); // 添加面板容器
		JScrollPane scrollPane = new JScrollPane(textArea);// 滚动窗格
		contentPane.add(scrollPane, BorderLayout.CENTER);// 添加滚动窗
		setVisible(true);
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		setSize(400, 300);
		// 注册事件/
		badmintonCheck.addActionListener(new Clickclass(this));
		tableTtennisCheck.addActionListener(new Clickclass(this));
		singCheck.addActionListener(new Clickclass(this));
		maleRadioButton.addActionListener(new Clickclass(this));
		femaleRadioButton.addActionListener(new Clickclass(this));

	}

	/ 创建监听器类//
	class Clickclass implements ActionListener {
		JLayeredPaneDemo oce;

		public Clickclass(JLayeredPaneDemo oce) {
			this.oce = oce;
		}

		public void actionPerformed(ActionEvent e)// 当事件发生时将调用该方法。

		{
			if (e.getSource() == badmintonCheck) {
				if (badmintonCheck.isSelected() == true) {
					textArea.append("羽毛球" + "\n");
					// TextArea方法append()的作用是在此文本域后面继续追加内容
				}
			} else if (e.getSource() == tableTtennisCheck) {
				if (tableTtennisCheck.isSelected() == true) {
					textArea.append("乒乓球" + "\n");
				}
			} else if (e.getSource() == singCheck) {
				if (singCheck.isSelected() == true) {
					textArea.append("唱歌" + "\n");
				}
			} else if (e.getSource() == maleRadioButton) {
				if (maleRadioButton.isSelected() == true) {
					textArea.append("男" + "\n");
				}
			}

			else if (e.getSource() == femaleRadioButton) {
				if (femaleRadioButton.isSelected() == true) {
					textArea.append("女" + "\n");
				}
			} else {
				return;
			}
		}

	}

	public static void main(String args[]) {
		new JLayeredPaneDemo();

	}

}



运行结果:

作业: 编写一个JFrame窗口,要求如下: 1. 在窗口的NORTH区放置一个JPanel面板。 2. JPanel面板放置如下组件: (1) JLable标签,标签文本为“兴趣”,右边接着是三个J_第1张图片

你可能感兴趣的:(作业: 编写一个JFrame窗口,要求如下: 1. 在窗口的NORTH区放置一个JPanel面板。 2. JPanel面板放置如下组件: (1) JLable标签,标签文本为“兴趣”,右边接着是三个J)