简体   繁体   English

我如何定义大尺寸的JRadioButton?

[英]How I can define a JRadioButton with large size?

I'm learning java. 我正在学习java。 for my GUI program need to large radio buttons (larger than the standard). 对于我的GUI程序需要大型单选按钮(大于标准)。 What can I do? 我能做什么?

I use Java Netbeans IDE - the latest version. 我使用Java Netbeans IDE - 最新版本。

You can supply you're own images for radio button, see JRadioButton#setIcon , JRadioButton#setSelectedIcon and How to Use Buttons, Check Boxes, and Radio Buttons for more details... 您可以为单选按钮提供自己的图像,有关详细信息,请参阅JRadioButton#setIconJRadioButton#setSelectedIcon以及如何使用按钮,复选框和单选按钮 ...

在此输入图像描述在此输入图像描述

import java.awt.EventQueue;
import java.awt.GridBagLayout;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class RadioButtonTest {

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

    public RadioButtonTest() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel {

        public TestPane() {
            try {
                BufferedImage checked = ImageIO.read(getClass().getResource("/Checked.png"));
                Image unchecked = ImageIO.read(getClass().getResource("/Unchecked.png")).getScaledInstance(300, 300, Image.SCALE_SMOOTH);

                JRadioButton btn = new JRadioButton("I'm not fat, I'm just big boned");
                btn.setSelectedIcon(new ImageIcon(checked));
                btn.setIcon(new ImageIcon(unchecked));
                btn.setHorizontalTextPosition(JRadioButton.CENTER);
                btn.setVerticalTextPosition(JRadioButton.BOTTOM);

                setLayout(new GridBagLayout());
                add(btn);
            } catch (IOException exp) {
                exp.printStackTrace();
            }
        }

    }

}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM