我需要这些信息,以便创建自定义登录对话框。
public static void main(String args[]) {
JOptionPane.showInputDialog("Enter username: ");
// This will show dialog and after 'OK' button is clicked
// into that dialog, it will return the input as string, right?
}
因此,我创建了扩展 JDialog 的新类,它包括 2 个标签、2 个文本字段和 1 个按钮,单击该按钮后,我想模拟 JOptionPane.showInputDialog() 之类的东西,我想在其他代码继续之前等待用户输入。
public static void main(String args[]) {
LoginDialog ld=new LoginDialog();
ld.setVisible(true);
// When that button is clicked i want this code to continue...
dl.getUsername();
dl.getPassword();
}