Swing中单选钮、下拉框、复选框的使用

67 篇文章 16 订阅

1、单选钮组件

在Swing中使用JRadioButton类来创建单选钮。ButtonGroup类是按钮组,可以使用ButtonGroup类的add()方法 将一组单选钮添加到按钮组中。

setSelected(boolean b)方法:设置单选钮为选中状态。

isSelected()方法:判断单选钮是否选中。

示例:创建单选钮,并设置默认选项。

// 创建单选钮
JRadioButton rdoMan = new JRadioButton("男");
JRadioButton rdoWoman = new JRadioButton("女");
// 创建按钮组
ButtonGroup group = new ButtonGroup();
group.add(rdoMan);
group.add(rdoWoman);
// 设置默认选择
rdoMan.setSelected(true);

2、下拉框组件

在Swing中使用JComboBox类创建下拉框对象。

addItem(E item)方法:用于添加下拉框选项。

getSelectedItem()方法:用于获取被选中的下拉框选项。

示例:创建下拉框,并添加下拉框选项。

// 创建下拉框
JComboBox comboBox = new JComboBox();
// 绑定下拉框选项
String[] strArray = { "学生", "军人", "工人" };
for (String item : strArray)
{
	comboBox.addItem(item);
}

3、复选框

在Swing中使用JCheckBox类创建复选框对象。

isSelected()方法:判断复选框是否被选中。

示例:创建复选框。

JCheckBox ckbA = new JCheckBox("足球");
JCheckBox ckbB = new JCheckBox("篮球");
JCheckBox ckbC = new JCheckBox("羽毛球");

4、综合示例

示例:单选钮、下拉框、复选框的使用,如下图:

完整代码:

import java.awt.EventQueue;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JRadioButton;

/**
 * Swing中单选钮、下拉框、复选框的使用
 * @author pan_junbiao
 *
 */
public class TestFrame
{
	private JFrame frame;

	public static void main(String[] args)
	{
		EventQueue.invokeLater(new Runnable() {
			public void run()
			{
				try
				{
					TestFrame window = new TestFrame();
					window.frame.setVisible(true);
				} catch (Exception e)
				{
					e.printStackTrace();
				}
			}
		});
	}

	public TestFrame()
	{
		initialize();
	}

	private void initialize()
	{
		frame = new JFrame();
		frame.setBounds(100, 100, 270, 192);
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		frame.getContentPane().setLayout(null);
		frame.setLocationRelativeTo(null); // 窗体居中

		JLabel label = new JLabel("类型:");
		label.setFont(new Font("宋体", Font.PLAIN, 14));
		label.setBounds(10, 24, 54, 15);
		frame.getContentPane().add(label);

		JLabel lblNewLabel = new JLabel("性别:");
		lblNewLabel.setFont(new Font("宋体", Font.PLAIN, 14));
		lblNewLabel.setBounds(10, 53, 44, 15);
		frame.getContentPane().add(lblNewLabel);

		JLabel label_1 = new JLabel("爱好:");
		label_1.setFont(new Font("宋体", Font.PLAIN, 14));
		label_1.setBounds(10, 78, 44, 15);
		frame.getContentPane().add(label_1);

		// 创建下拉框
		JComboBox comboBox = new JComboBox();
		// 绑定下拉框选项
		String[] strArray = { "学生", "军人", "工人" };
		for (String item : strArray)
		{
			comboBox.addItem(item);
		}

		comboBox.setFont(new Font("宋体", Font.PLAIN, 14));
		comboBox.setBounds(53, 20, 140, 23);
		frame.getContentPane().add(comboBox);

		// 创建单选钮
		JRadioButton rdoMan = new JRadioButton("男");
		JRadioButton rdoWoman = new JRadioButton("女");
		// 创建按钮组
		ButtonGroup group = new ButtonGroup();
		group.add(rdoMan);
		group.add(rdoWoman);
		// 设置默认选择
		rdoMan.setSelected(true);

		rdoMan.setFont(new Font("宋体", Font.PLAIN, 14));
		rdoMan.setBounds(48, 49, 54, 23);
		frame.getContentPane().add(rdoMan);

		rdoWoman.setFont(new Font("宋体", Font.PLAIN, 14));
		rdoWoman.setBounds(104, 49, 54, 23);
		frame.getContentPane().add(rdoWoman);

		JCheckBox ckbA = new JCheckBox("足球");
		ckbA.setFont(new Font("宋体", Font.PLAIN, 14));
		ckbA.setBounds(48, 74, 54, 23);
		frame.getContentPane().add(ckbA);

		JCheckBox ckbB = new JCheckBox("篮球");
		ckbB.setFont(new Font("宋体", Font.PLAIN, 14));
		ckbB.setBounds(104, 74, 54, 23);
		frame.getContentPane().add(ckbB);

		JCheckBox ckbC = new JCheckBox("羽毛球");
		ckbC.setFont(new Font("宋体", Font.PLAIN, 14));
		ckbC.setBounds(163, 74, 71, 23);
		frame.getContentPane().add(ckbC);

		JButton btnSubmit = new JButton("确定");
		btnSubmit.setFont(new Font("宋体", Font.PLAIN, 14));
		btnSubmit.setBounds(10, 115, 93, 23);
		frame.getContentPane().add(btnSubmit);

		JButton btnReset = new JButton("重置");
		btnReset.setFont(new Font("宋体", Font.PLAIN, 14));
		btnReset.setBounds(141, 115, 93, 23);
		frame.getContentPane().add(btnReset);

		// 重置按钮事件
		btnSubmit.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e)
			{
				String msg = "";

				// 获取下拉框选择
				String typeStr = comboBox.getSelectedItem().toString();
				msg = "类型:" + typeStr;
				JOptionPane.showMessageDialog(null, msg, "提示", JOptionPane.INFORMATION_MESSAGE);

				// 获取单选钮选项
				String sexStr = rdoMan.isSelected() ? "男" : "女";
				msg = "性别:" + sexStr;
				JOptionPane.showMessageDialog(null, msg, "提示", JOptionPane.INFORMATION_MESSAGE);

				// 获取复选框选项
				msg = "爱好:";
				if (ckbA.isSelected())
				{
					msg += ckbA.getText() + ";";
				}

				if (ckbB.isSelected())
				{
					msg += ckbB.getText() + ";";
				}

				if (ckbC.isSelected())
				{
					msg += ckbC.getText() + ";";
				}
				JOptionPane.showMessageDialog(null, msg, "提示", JOptionPane.INFORMATION_MESSAGE);

			}
		});

		// 重置按钮事件
		btnReset.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e)
			{
				comboBox.setSelectedIndex(0);
				rdoMan.setSelected(true);
				ckbA.setSelected(false);
				ckbB.setSelected(false);
				ckbC.setSelected(false);
			}
		});
	}
}

 

  • 5
    点赞
  • 38
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

pan_junbiao

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值