JOptionPane.showMessageDialog(null,...)始终在主屏幕上显示对话框

时间:2016-07-04 15:11:31

标签: java awt joptionpane

有没有解决方法?我可能用来在鼠标指针的屏幕上显示对话框的任何替代库(不能使用父对象)?或者是否有任何api来更改对话框的屏幕?

我甚至尝试在所需的屏幕上使用不可见的父JFrame,但是如果在调用对话框时它可见,它对对话框的屏幕定位只有任何影响。我的“特殊情况”是我没有应用程序窗口或JFrame,我想要粘贴对话框。它应始终显示在用户当前正在使用的屏幕中央。

1 个答案:

答案 0 :(得分:2)

我建议您使用JOptionPane,而不是使用JDialog

以下是一个例子:

JOptionPane jOptionPane = new JOptionPane("Really do this?", JOptionPane.PLAIN_MESSAGE, JOptionPane.YES_NO_OPTION);
JDialog jDialog = jOptionPane.createDialog("dialog title");

要在特定屏幕上显示此信息,您可以获得所需屏幕的边界,然后将对话框置于其中心,例如:

Rectangle screenBounds = MouseInfo.getPointerInfo().getDevice().getDefaultConfiguration().getBounds();

int x = (int) screenBounds.getCenterX() - (jDialog.getWidth() / 2);
int y = (int) screenBounds.getCenterY() - (jDialog.getHeight() / 2);

jDialog.setLocation(x, y);
jDialog.setVisible(true);

检查结果:

Object selectedValue = jOptionPane.getValue();
int dialogResult = JOptionPane.CLOSED_OPTION;
if (selectedValue != null) {
    dialogResult = Integer.parseInt(selectedValue.toString());
}

switch (dialogResult) {
    case JOptionPane.YES_OPTION:
        LOG.info("yes pressed");
        break;
    case JOptionPane.NO_OPTION:
        LOG.info("no pressed");
        break;
    case JOptionPane.CLOSED_OPTION:
        LOG.info("closed");
        break;
    default:
}