1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > java swing单选按钮_Swing如何创建和使用单选按钮?

java swing单选按钮_Swing如何创建和使用单选按钮?

时间:2021-06-02 23:08:32

相关推荐

java swing单选按钮_Swing如何创建和使用单选按钮?

下面的示例展示了如何在Java Swing应用程序中使用标准单选按钮。

使用以下API -

JRadioButton() - 创建标准单选按钮。

JRadioButton.setEnabled(false); - 禁用单选按钮。

JRadioButton.setMnemonic(KeyEvent.VK_C) - 为单选按钮设置键盘快捷键。

JRadioButton.setSelected(true) - 设置选中的单选按钮。

示例:

package com.yiibai.swingdemo;

import java.awt.BorderLayout;

import java.awt.FlowLayout;

import java.awt.LayoutManager;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.KeyEvent;

import javax.swing.JRadioButton;

import javax.swing.JFrame;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

public class SwingTester {

public static void main(String[] args) {

createWindow();

}

private static void createWindow() {

JFrame frame = new JFrame("Swing创建和使用单选按钮()");

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

createUI(frame);

frame.setSize(560, 200);

frame.setLocationRelativeTo(null);

frame.setVisible(true);

}

private static void createUI(final JFrame frame){

JPanel panel = new JPanel();

LayoutManager layout = new FlowLayout();

panel.setLayout(layout);

JRadioButton radioButton1 = new JRadioButton("Java/Swing");

JRadioButton radioButton2 = new JRadioButton("Python");

radioButton2.setEnabled(false);

JRadioButton radioButton3 = new JRadioButton("MySQL");

radioButton3.setMnemonic(KeyEvent.VK_C);

radioButton1.addActionListener(new ActionListener() {

@Override

public void actionPerformed(ActionEvent e) {

Object source = e.getSource();

JOptionPane.showMessageDialog(frame,

((JRadioButton)source).getText() + ": " + ((JRadioButton)source).isSelected());

}

});

panel.add(radioButton1);

panel.add(radioButton2);

panel.add(radioButton3);

frame.getContentPane().add(panel, BorderLayout.CENTER);

}

}

执行上面示例代码,得到以下结果:

¥ 我要打赏

纠错/补充

收藏

加QQ群啦,易百教程官方技术学习群

注意:建议每个人选自己的技术方向加群,同一个QQ最多限加 3 个群。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。