居中显示:setLocationRelativeTo(null); // 程序居中展示
全屏显示:getGraphicsConfiguration().getDevice().setFullScreenWindow(this); // 全屏展示
去除边框:setUndecorated(true); // 设置无边框,需要在 pack() 方法前调用
居中显示:setLocationRelativeTo(null); // 程序居中展示
全屏显示:getGraphicsConfiguration().getDevice().setFullScreenWindow(this); // 全屏展示
去除边框:setUndecorated(true); // 设置无边框,需要在 pack() 方法前调用