2
package javaapplication1;

import java.awt.DisplayMode;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;

public class JavaApplication1 {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        final JFrame frame = new JFrame();
        frame.setTitle("Frame");
        frame.setSize(800, 600);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        GraphicsDevice device = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
        device.setFullScreenWindow(frame);
        device.setDisplayMode(new DisplayMode(800, 600, 32, 60));
        frame.setVisible(true);

        JButton btn = new JButton();
        btn.setText("Button");
        JPanel panel = new JPanel();

        panel.add(btn);
        frame.add(panel);

        btn.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                JOptionPane.showMessageDialog(frame, "JOptionPane");
            }
        });
    }
}

当我单击按钮时,设置为全屏的应用程序将转到任务栏/最小化,因此我需要先在任务栏中单击它,然后才能看到我触发的 JOptionPane。你认为这有什么问题?我希望它能够顺利运行,而不会被最小化或进入任务栏。期待您的回答。提前致谢。或者还有其他选择吗?

4

2 回答 2

5

该代码对我有用,尽管您可以尝试使用此变体进行 2 处更改。

  1. 它在 EDT 上创建并显示 GUI。
  2. 它使用框架的内容窗格作为JOptionPane

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class JavaApplication1 {

    public static void main(String[] args) {
        Runnable r = new Runnable() {

            public void run() {
                final JFrame frame = new JFrame();
                frame.setTitle("Frame");
                frame.setSize(800, 600);
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                GraphicsDevice device = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
                device.setFullScreenWindow(frame);
                device.setDisplayMode(new DisplayMode(800, 600, 32, 60));
                frame.setVisible(true);

                JButton btn = new JButton();
                btn.setText("Button");
                JPanel panel = new JPanel();

                panel.add(btn);
                frame.add(panel);

                btn.addActionListener(new ActionListener() {

                    @Override
                    public void actionPerformed(ActionEvent e) {
                        //JOptionPane.showMessageDialog(frame, "JOptionPane");
                        JOptionPane.showMessageDialog(frame.getContentPane(), "JOptionPane");
                    }
                });
            }
        };
        SwingUtilities.invokeLater(r);
    }
}

更新

当我将以下行添加到上面看到的源代码的开头时..

System.out.println(System.getProperty("java.version"));
System.out.println(System.getProperty("java.vm.version"));

..输出和结果如下。

在 1.7 中运行

结果: 问题中描述的失败。

1.7.0_09
23.5-b02

在 1.6 中运行

结果: 没有异常工件或行为的成功。

1.6.0
1.6.0-b105

分析

请注意,来自评论的其他结果表明行为在早期的 1.6 版本和 1.6.0_25 之间发生了变化。这似乎是一个回归错误。OP 应该检查错误数据库,如果没有任何可能出现,请提交新报告。

于 2012-12-25T11:14:10.780 回答
2
JOptionPane.showInternalMessageDialog(frame.getContentPane(), "JOptionPane");
于 2012-12-26T07:44:56.997 回答