问题:
用户的要求是呈现一个弹出窗口单击按钮时至少包含两个 JTextFields 和 JLabels 的表单,但使用JOptionPane.showInputDialog() 不是一个可接受的解决方案。
答案:
考虑使用 JOptionPane 方法,如 showInputDialog() 或 showMessageDialog(),尽管组件数量较多。
额外注意事项:
示例代码:
以下代码片段演示了使用 JPanel、JComboBox 和 JTextFields 与 JOptionPane 实现弹出表单。
import java.awt.EventQueue; import java.awt.GridLayout; import javax.swing.*; class JOptionPaneTest { private static void display() { String[] items = {"One", "Two", "Three", "Four", "Five"}; JComboBox<String> combo = new JComboBox<>(items); JTextField field1 = new JTextField("1234.56"); JTextField field2 = new JTextField("9876.54"); JPanel panel = new JPanel(new GridLayout(0, 1)); panel.add(combo); panel.add(new JLabel("Field 1:")); panel.add(field1); panel.add(new JLabel("Field 2:")); panel.add(field2); int result = JOptionPane.showConfirmDialog(null, panel, "Test", JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE); if (result == JOptionPane.OK_OPTION) { System.out.println(combo.getSelectedItem() + " " + field1.getText() + " " + field2.getText()); } else { System.out.println("Cancelled"); } } public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { @Override public void run() { display(); } }); } }
以上是如何使用 JOptionPane 创建具有多个 JTextField 和 JLabels 的弹出表单?的详细内容。更多信息请关注PHP中文网其他相关文章!