📄 radiobuttonframe.java
字号:
package control;import java.awt.*;import java.awt.event.*;import javax.swing.*;public class RadioButtonFrame extends JFrame implements ItemListener { JPanel contentPane; JRadioButton jRadioButton1 = new JRadioButton(); JRadioButton jRadioButton2 = new JRadioButton(); JRadioButton jRadioButton3 = new JRadioButton(); ButtonGroup buttonGroup1 = new ButtonGroup(); public RadioButtonFrame() { try { jbInit(); } catch(Exception e) { e.printStackTrace(); } } private void jbInit() throws Exception { contentPane = (JPanel) this.getContentPane(); contentPane.setLayout(null); this.setSize(new Dimension(400, 300)); this.setTitle("RadioBox示例"); jRadioButton1.setText("单选框1"); jRadioButton1.setBounds(new Rectangle(142, 61, 91, 25)); jRadioButton1.addItemListener(this); jRadioButton2.setText("单选框2"); jRadioButton2.setBounds(new Rectangle(142, 122, 91, 25)); jRadioButton2.addItemListener(this); jRadioButton3.setText("单选框3"); jRadioButton3.setBounds(new Rectangle(142, 182, 91, 25)); jRadioButton3.addItemListener(this); buttonGroup1.add(jRadioButton1); buttonGroup1.add(jRadioButton2); buttonGroup1.add(jRadioButton3); contentPane.add(jRadioButton2, null); contentPane.add(jRadioButton3, null); contentPane.add(jRadioButton1, null); } protected void processWindowEvent(WindowEvent e) { if (e.getID() == WindowEvent.WINDOW_CLOSING) { System.exit(0); } } public void itemStateChanged(ItemEvent e) { //取得单选框 JRadioButton tempRadioButton = (JRadioButton)e.getSource(); if(tempRadioButton.isSelected()){ JOptionPane.showMessageDialog(null, tempRadioButton.getText() + "被选择."); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -