我被问到:
JFrame
)我试过这样做,但我不知道怎么做。我唯一能做的就是在BorderLayout
的同一个地方放两个按钮(两个按钮在"中心"位置,例如,但我不认为它是相同的事情为"按钮内的一个按钮"。
如果有人知道是否可以这样做或者怎么做,那就太好了!
答案 0 :(得分:4)
是的,可以将一个按钮添加到另一个按钮。我会让你去研究第二个问题。
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);
}
}