8

我想让JOptionPane.showMessageDialog消息出现

  • 屏幕上的任何位置。
  • 相对于 JFrame。(不在 JFrame 的中心)

例如,这将在作为参数提供的 JFrame 的中心显示消息thisFrame

 JOptionPane.showMessageDialog(thisFrame, "Your message.");

这将在屏幕中央显示与任何 JFrame 无关的消息。

JOptionPane.showMessageDialog(null, "Your message.");
  • 我想要的是在我想要的任何地方设置消息的位置

  • 我想要的是设置消息相对于 JFrame 的位置(不在 JFrame 的中心)

如何?

4

3 回答 3

9

你需要的是

    final JOptionPane pane = new JOptionPane("Hello");
    final JDialog d = pane.createDialog((JFrame)null, "Title");
    d.setLocation(10,10);
    d.setVisible(true);
于 2012-12-07T09:36:59.130 回答
6
import javax.swing.JDialog;
import javax.swing.JPanel;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JButton;

public class CustomDialog extends JDialog {
    private JPanel myPanel = null;
    private JButton yesButton = null;
    private JButton noButton = null;

    public CustomDialog(JFrame frame, boolean modal, String myMessage) {
    super(frame, modal);
    myPanel = new JPanel();
    getContentPane().add(myPanel);
    myPanel.add(new JLabel(myMessage));
    yesButton = new JButton("Yes");
    myPanel.add(yesButton);
    noButton = new JButton("No");
    myPanel.add(noButton);
    pack();
    //setLocationRelativeTo(frame);
    setLocation(200, 200); // <--
    setVisible(true);
    }
}
于 2012-12-07T09:36:36.920 回答
0

试试这个

JOptionPane pane = new JOptionPane(arguments);
pane.setBounds(x, y,width, height);   
pane.setVisible(true);
于 2012-12-07T09:28:55.710 回答