如何在另一个按钮内放置一个按钮(java)

时间:2017-12-07 05:26:00

标签: java swing jbutton

我被问到:

  1. 如果可以在框架中的另一个按钮(JFrame
  2. 中放置一个按钮
  3. 当我尝试这样做时会发生什么(他们要求测试是否并告诉发生了什么)
  4. 我试过这样做,但我不知道怎么做。我唯一能做的就是在BorderLayout的同一个地方放两个按钮(两个按钮在"中心"位置,例如,但我不认为它是相同的事情为"按钮内的一个按钮"。

    如果有人知道是否可以这样做或者怎么做,那就太好了!

1 个答案:

答案 0 :(得分:4)

是的,可以将一个按钮添加到另一个按钮。我会让你去研究第二个问题。

enter image description here

import java.awt.*;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
import java.net.*;

public class ButtonQuestion {

    private JComponent ui = null;
    JButton button1;
    JButton button2;

    ButtonQuestion() {
        try {
            initUI();
        } catch (MalformedURLException ex) {
            ex.printStackTrace();
        }
    }

    public void initUI() throws MalformedURLException {
        if (ui!=null) return;

        ui = new JPanel(new BorderLayout(4,4));
        ui.setBorder(new EmptyBorder(4,4,4,4));

        button1 = new JButton("button 1", new ImageIcon(
                new URL("https://i.stack.imgur.com/in9g1.png")));
        button2 = new JButton("button 2", new ImageIcon(
                new URL("https://i.stack.imgur.com/wCF8S.png")));
        ui.add(button1);
        // Yep. One button can indeed be added to another..
        button1.add(button2);
    }

    public JComponent getUI() {
        return ui;
    }

    public static void main(String[] args) {
        Runnable r = new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (Exception useDefault) {
                }
                ButtonQuestion o = new ButtonQuestion();

                JFrame f = new JFrame(o.getClass().getSimpleName());
                f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                f.setLocationByPlatform(true);

                f.setContentPane(o.getUI());
                f.pack();
                f.setMinimumSize(f.getSize());

                f.setVisible(true);
            }
        };
        SwingUtilities.invokeLater(r);
    }
}