愚蠢的问题,但我似乎无法找到答案,当我这样做不起作用。所以我想在现有的JPanel上添加新的JPanel。有时当我添加它时,它只是在我运行时打开一个新窗口,其他时候没有任何反应。无论如何这里是代码:
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
public class Main extends JFrame {
private static final long serialVersionUID = 1L;
public static void main(String[] args)
{
new Main().setVisible(true);
}
private Main()
{
super("Vending machine");
JPanel p = new JPanel();
JLabel title = new JLabel("Vending machine: ");
JButton button1 = new JButton("1");
JButton button2 = new JButton("2");
JButton button3 = new JButton("5");
JLabel label1 = new JLabel("Enter code: ");
JTextField text1= new JTextField(3);
JButton ok= new JButton("OK");
JButton button4 = new JButton("Return change");
JLabel label2 = new JLabel("Result is: ");
JTextField text2= new JTextField(3);
JLabel label3 = new JLabel("Current: ");
JTextField text3= new JTextField(3);
title.setBounds(200,5,250,80);
title.setFont (title.getFont ().deriveFont (22.0f));
p.add(title);
p.setLayout(null);
button1.setBounds(530,46,120,60);
p.add(button1);
button2.setBounds(530,172,120,60);
p.add(button2);
button3.setBounds(530,298,120,60);
p.add(button3);
label1.setBounds(555,414,120,60);
p.add(label1);
text1.setBounds(530,454,120,30);
p.add(text1);
ok.setBounds(530,550,120,60);
p.add(ok);
button4.setBounds(360,550,120,60);
p.add(button4);
label2.setBounds(230,530,120,60);
p.add(label2);
text2.setBounds(200,575,120,30);
p.add(text2);
label3.setBounds(50,530,120,60);
p.add(label3);
text3.setBounds(38,575,120,30);
p.add(text3);
getContentPane().add(p);
setSize(700,700);
setVisible(true);
}
}
我想在这个地方添加新的JPanel:自动售货机:
谢谢!
即使您可以这样做,每次您希望在此框架上进行其他更改时,它也会给您带来伤害。
不是将JPanel定位到另一个JPanel,而是使用布局。
你不应该使用静态变量和空布局。
使用适当的布局管理器也许主面板使用BorderLayout。然后将主要组件添加到CENTER,将第二个面板添加到EAST。第二个面板也可以使用BorderLayout。然后,您可以根据需要将这两个组件添加到NORTH,CENTER或SOUTH。