5

我希望我没有发布重复的问题,但我找不到这样的问题,所以也许我安全?反正...

对于我正在制作的应用程序,我将同时打开两个应用程序(两个独立的进程和窗口)。运行这些应用程序的计算机将具有多个监视器。我希望第一个应用程序/窗口全屏并占用我的一个显示器(简单部分),另一个在第二个显示器上全屏。如果可能的话,我希望他们以这种方式进行初始化。

目前,我正在使用以下代码使我的 Windows 全屏显示:

this.setVisible(false);
this.setUndecorated(true);
this.setResizable(false);
myDevice = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
myDevice.setFullScreenWindow(this);

它所在的类是 JFrame 类的扩展,myDevice 属于“GraphicsDevice”类型。当然有可能有更好的方法让我的窗口全屏显示,这样我就可以在两个不同的显示器上全屏显示两个不同的应用程序。

如果我有任何不清楚的地方,请说,我会尝试在澄清中进行编辑!

4

1 回答 1

5

首先,您需要将框架放置在每个屏幕设备上。

frame1.setLocation(pointOnFirstScreen);
frame2.setLocation(pointOnSecondScreen);

然后要最大化一个框架,只需在您的 JFrame 上调用它:

frame.setExtendedState(Frame.MAXIMIZED_BOTH);

这是一个工作示例,说明:

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Frame;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.Point;

import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;

public class Test {
    protected void initUI() {
        Point p1 = null;
        Point p2 = null;
        for (GraphicsDevice gd : GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices()) {
            if (p1 == null) {
                p1 = gd.getDefaultConfiguration().getBounds().getLocation();
            } else if (p2 == null) {
                p2 = gd.getDefaultConfiguration().getBounds().getLocation();
            }
        }
        if (p2 == null) {
            p2 = p1;
        }
        createFrameAtLocation(p1);
        createFrameAtLocation(p2);
    }

    private void createFrameAtLocation(Point p) {
        final JFrame frame = new JFrame();
        frame.setTitle("Test frame on two screens");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JPanel panel = new JPanel(new BorderLayout());
        final JTextArea textareaA = new JTextArea(24, 80);
        textareaA.setBorder(BorderFactory.createLineBorder(Color.DARK_GRAY, 1));
        panel.add(textareaA, BorderLayout.CENTER);
        frame.setLocation(p);
        frame.add(panel);
        frame.pack();
        frame.setExtendedState(Frame.MAXIMIZED_BOTH);
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {

            @Override
            public void run() {
                new Test().initUI();
            }
        });
    }

}
于 2012-06-01T18:07:17.957 回答