我的节目是关于一家超市。当我编译程序时,JFrame窗口'f1'和'f2'都出现在屏幕上。但是我希望首先出现JFrame窗口'f1',然后在点击'f1'窗口的JButton'b1'之后,我希望JFrame窗口'f2'到来。以下是我的程序的delivery()方法:
public static void delivery()
{
final JFrame f1 = new JFrame("Name");
GridLayout grid = new GridLayout(20, 40, 10, 8);
f1.setLayout(grid);
f1.setVisible(true);
f1.setSize(600,200);
f1.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
f1.setLocation(700,450);
JPanel p1 = new JPanel();
final JLabel l1 = new JLabel("Enter your name: ");
final JTextField jt1 = new JTextField(20);
JButton b1 = new JButton("Ok");
b1.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
input1 = jt1.getText();
f1.dispose();
}
});
p1.add(b1);
p1.add(l1);
p1.add(jt1);
f1.add(p1);
final JFrame f2 = new JFrame("Address");
f2.setVisible(true);
f2.setSize(600,200);
f2.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
f2.setLocation(700,450);
JPanel p2 = new JPanel();
final JLabel l2 = new JLabel("Enter your address: ");
final JTextField jt2 = new JTextField(20);
JButton b2 = new JButton("Ok");
b2.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
input2 = jt2.getText();
f2.dispose();
}
});
p2.add(b1);
p2.add(l2);
p2.add(jt2);
f2.add(p2);
JOptionPane.showMessageDialog(null, "The ordered stuff will be delivered to " +input1+ " who lives in: " +input2 , "Delivery" , JOptionPane.PLAIN_MESSAGE);
JOptionPane.showMessageDialog(null, "Thank you for shopping at Paradise 24/7. Hope to see you again." , "Shopping Done!" , JOptionPane.PLAIN_MESSAGE);
}
答案 0 :(得分:1)
显示框架的代码行是
f1.setVisible(true);
您的投放方式中的两个框架都有此功能。
在另一个更改之后使一个出现,以便一个设置为可见而另一个在按钮的代码中未设置,即(显然你必须在此之前声明f2)
b1.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
input1 = jt1.getText();
f1.dispose();
//f1.setVisible(false); // or dispose if you no longer need it
f2.setVisible(true);
}
});
只是一个建议:更好的方法可能是使用JDialog。这将允许您从用户等待响应获取输入表单,然后提示输入下一个输入。 Click here for tutorial on Dialogs
在添加框架/面板的组件时,您可能还想查看一些布局。 GridLayout,BorderLayout,FlowLayout
答案 1 :(得分:0)
只需在按钮的f2.setVisible(true);
中添加代码actionPerformed()
即可。
例如
f1.setBounds(whatever);
f2.setBounds(whatever);
//add button in JFrame and actionListener
f1.setVisible(true);
f2.setVisible(false);
actionPerformed(ActionEvent e)
{
f2.setVisible(true);
}
答案 2 :(得分:0)
然后你必须首先阅读JavaDocs并阅读一些优秀的Java初学者电子书,例如Java 2完全参考,O'Really - Java Swing将对你有所帮助