如何使用JFrame在另一台显示器上打开另一个JFrame窗口?

时间:2013-01-15 13:09:30

标签: java swing jframe awt multiple-monitors

我正在编写一个旨在用于双监视器系统的程序。我必须分开JFrame个对象,并将它设置为默认值,第一个帧实例打开。然后,用户必须将该帧拖到特定的监视器上,或将其保留在原位。当他们点击该帧上的按钮时,我希望程序在对面的监视器上打开第二帧。

那么,我如何找出一个框架对象所在的监视器,然后告诉另一个框架对象在另一个框架对象上打开?

1 个答案:

答案 0 :(得分:3)

查看GraphicsEnvironment,您可以轻松找到每个屏幕的边界和位置。在那之后,只需要玩框架的位置。

请在此处查看小型演示示例代码:

import java.awt.Frame;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;

public class TestMultipleScreens {

    private int count = 1;

    protected void initUI() {
        Point p = null;
        for (GraphicsDevice gd : GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices()) {
            p = gd.getDefaultConfiguration().getBounds().getLocation();
            break;
        }
        createFrameAtLocation(p);
    }

    private void createFrameAtLocation(Point p) {
        final JFrame frame = new JFrame();
        frame.setTitle("Frame-" + count++);
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
        final JButton button = new JButton("Click me to open new frame on another screen (if you have two screens!)");
        button.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                GraphicsDevice device = button.getGraphicsConfiguration().getDevice();
                Point p = null;
                for (GraphicsDevice gd : GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices()) {
                    if (!device.equals(gd)) {
                        p = gd.getDefaultConfiguration().getBounds().getLocation();
                        break;
                    }
                }
                createFrameAtLocation(p);
            }
        });
        frame.add(button);
        frame.setLocation(p);
        frame.pack(); // Sets the size of the unmaximized window
        frame.setExtendedState(Frame.MAXIMIZED_BOTH); // switch to maximized window
        frame.setVisible(true);
    }

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

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

}

然而,请仔细阅读The Use of Multiple JFrames, Good/Bad Practice?,因为它们带来了非常有趣的考虑因素。