我有一个带有 JOptionPane 的简单 JDialog,它工作正常。但是我想使用 JFrame 并创建更复杂的窗口,但我希望它充当 JDialog,这意味着我需要在 JFrame 或 JDialog 打开时停止代码,因为下一步取决于在窗口中选择的内容。
这是我的课程,是否有运行它以停止我的代码
public class MyFrame extends JDialog{
private static final long serialVersionUID = 1L;
public MyFrame() throws IOException {
setSize(600, 450);
dialogInit();
setTitle("Travel");
setVisible(true);
URL url = this.getClass().getResource("/images/travel1.png");
BufferedImage bf = ImageIO.read(url);
this.setContentPane(new backImage(bf));
JButton b = new JButton("Send");
JCheckBox tf=new JCheckBox("Country");
b.setBounds(318, 143, 98, 27);
tf.setBounds(235, 104, 150, 27);
add(b);
add(tf);
}
}