如何让我的JFrame打开中心屏幕?

时间:2017-11-21 00:25:43

标签: java swing

我已经添加了frame.setLocationRelativeTo(null);,但是在运行应用程序时它仍然会在屏幕左侧打开。

public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            try {
                Login frame = new Login();
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

0 个答案:

没有答案