Java JRadioButton ButtonGroup

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

import javax.swing.*;


public class RadioButton {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        EventQueue.invokeLater(new Runnable() {
            public void run(){
                RadioBtnFrame frame = new RadioBtnFrame();
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setVisible(true);
            }
        });
    }

}

class RadioBtnFrame extends JFrame {
    private static final int DEFAULT_WIDTH = 300;
    private static final int DEFAULT_HEIGHT = 200;
    private JPanel buttonPane;
    private ButtonGroup group;
    private JLabel label;
    private static final int DEFAULT_SIZE = 12;
    
    public RadioBtnFrame() {
        setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);
        setTitle("RadioBtnFrame");
        
        label = new JLabel("Jun.H Love Dan.D.Y!");
        label.setFont(new Font("Serif", Font.PLAIN, DEFAULT_SIZE));
        super.add(label, BorderLayout.CENTER);
        
        group = new ButtonGroup();
        buttonPane = new JPanel();
        
        addBtn("Small", 8);
        addBtn("Medium", 12);
        addBtn("Large", 18);
        addBtn("Extra Large", 36);
        
        super.add(buttonPane, BorderLayout.SOUTH);
    }
    
    public void addBtn(String name, final int size) {
        boolean selected = size == DEFAULT_SIZE;
        
        JRadioButton newBtn = new JRadioButton(name, selected);
        group.add(newBtn);
        buttonPane.add(newBtn);
        
        //this listener sets the label font size
        
        ActionListener listener = new ActionListener() {
                public void actionPerformed(ActionEvent event) {
                    // size refers to final parameter of the addRadioButton
                    //methed
                    label.setFont(new Font("Serif", Font.PLAIN, size));
                }
        };
        
        newBtn.addActionListener(listener);
    }
}

你可能感兴趣的:(Java JRadioButton ButtonGroup)