我创建了一个用于获取用户详细信息的表单。现在我希望当用户单击提交按钮时,他/她的详细信息会以不可编辑的表单格式或显示他/她的表单外观的弹出窗口显示。
我怎样才能做到这一点?
您可以使用 JPanel(作为不可编辑的表单)和 JLabel(编写文本),如下所示:
public static void main(String[] args) {
NewJFrame1 frame = new NewJFrame1();
frame.setLayout(new GridBagLayout());
JPanel panel = new JPanel();
JLabel jlabel = new JLabel("Some kind of message");
jlabel.setFont(new Font("Verdana",1,20));
panel.add(jlabel);
panel.setBorder(new LineBorder(Color.BLACK));
frame.add(panel, new GridBagConstraints());
frame.setSize(400, 400);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(NewJFrame1.EXIT_ON_CLOSE);
frame.setVisible(true);
}