gpt4 book ai didi

java - Java GUI 不能看起来像我想要的那样吗...?

转载 作者:行者123 更新时间:2023-12-02 04:50:59 26 4
gpt4 key购买 nike

问题只是希望 GUI 看起来像这样:

这是我的代码

import javax.swing.JOptionPane;

class Customer
{

String n = JOptionPane.showInputDialog("Enter name");
String id = JOptionPane.showInputDialog("Enter id");
String sub = JOptionPane.showInputDialog("Enter Submit");

JOptionPane.showMessageDialog(null, null, null, JOptionPane.PLAIN_MESSAGE)

}

}

我希望一切看起来都是水平的

Enter Name         [box to fill in name]

Enter id [box to fill in id]

Submit [box to enter submit]

最佳答案

您总共显示了 4 个选项 Pane 。如果您希望所有内容都在一个选项 Pane 中,这可能会有所帮助:

JPanel msgPanel = new JPanel();
msgPanel.setLayout(new GridLayout(3 , 2));

msgPanel.add(new JLabel("Enter name");

JTextField nameField = new JTextField();
msgPanel.add(nameField);

//create other fields and labels

JOptionPane.showMessageDialog(null , msgPanel , "" , JOptionPane.PLAIN_MESSAGE);

String name = nameField.getText();
//read other fields

关于java - Java GUI 不能看起来像我想要的那样吗...?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29246030/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com