我有一个带有一些 JTextField 和一个 JButton 的 JFrame。我希望它表现得像 JOptionPane.showInputDialog()。基本上,我想构造它,然后调用 .start() 或使其可见的东西,然后等待按下按钮,然后返回 JTextField 的内容。我听说 wait()/notify() 可能会这样做,但我不知道这是否合适,如果合适,我可以看到一个如何使用它的简短示例吗?
问问题
2052 次
2 回答
3
在这里尝试使用以下代码示例JDialog
:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class DialogExample extends JFrame
{
private JLabel nameLabel;
public DialogExample()
{
super("Dialog Example");
}
private void createAndDisplayGUI()
{
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel contentPane = new JPanel();
nameLabel = new JLabel();
contentPane.add(nameLabel);
setContentPane(contentPane);
setSize(200, 100);
setLocationByPlatform(true);
setVisible(true);
MyDialog dialog = new MyDialog(this, "Credentials : ", true);
dialog.createAndDisplayGUI();
}
public void setName(String name)
{
if (name.length() > 0)
nameLabel.setText(name);
else
nameLabel.setText("Empty string received.");
}
public static void main(String... args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
new DialogExample().createAndDisplayGUI();
}
});
}
}
class MyDialog extends JDialog
{
private JTextField nameField;
private JFrame frame;
public MyDialog(JFrame f
, String title, boolean isModal)
{
super(f, title, isModal);
frame = f;
}
public void createAndDisplayGUI()
{
JPanel contentPane = new JPanel();
contentPane.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 5));
JLabel nameLabel = new JLabel("Please Enter your Name : ");
nameField = new JTextField(10);
JButton submitButton = new JButton("SUBMIT");
submitButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
if (nameField.getDocument().getLength() > 0)
frame.setName(nameField.getText());
else
frame.setName("");
MyDialog.this.dispose();
}
});
contentPane.add(nameLabel);
contentPane.add(nameField);
contentPane.add(submitButton);
add(contentPane);
pack();
setVisible(true);
}
}
于 2012-06-20T03:59:43.843 回答
3
JDialog 也是您自定义输入对话框的解决方案,有一个库可以帮助您加快开发速度。它被称为TaskDailog。
更多信息请访问http://code.google.com/p/oxbow/wiki/TaskDialogIntroduction?tm=6
于 2012-06-20T03:55:04.607 回答