窗口边框定位和不可调整大小的窗口
在 Java Swing 应用程序中,创建不可调整大小的 JFrame 时,setLocation 方法可能无法正确使用如果启用了 Windows Aero,则考虑窗口边框。这会导致并排放置窗口时窗口边框重叠。
请考虑以下代码:
import java.awt.Rectangle; import javax.swing.JFrame; public class WindowBorders { public static void main(String[] args) { JFrame frame1 = new JFrame("frame 1"); JFrame frame2 = new JFrame("frame 2"); frame1.setResizable(false); frame2.setResizable(false); frame1.setVisible(true); Rectangle bounds = frame1.getBounds(); frame2.setLocation(bounds.x + bounds.width, bounds.y); frame2.setVisible(true); } }
使用 Windows Aero 时,frame2 的边框将与frame1 的边框重叠。但是,如果禁用 Windows Aero 或将框架设置为可调整大小,则定位将按预期工作。
要了解此问题,请考虑操作系统如何处理不可调整大小的容器。当窗口不可调整大小时,操作系统将确定窗口内容和边框所需的最小尺寸。然后强制执行这个最小尺寸,并且窗口不能再变小。
在我们的代码中,出现问题是因为当我们使用 setLocation 方法设置frame2的位置时,我们指定了窗口的位置内容,而不是窗口的边框。这意味着没有考虑到frame2的边框,从而导致边框重叠。
要解决此问题,我们可以调整frame2的位置以考虑其边框。一种方法是从所需的 X 坐标中减去边框宽度:
frame2.setLocation(bounds.x + bounds.width - frame2.getInsets().right, bounds.y);
这可确保正确考虑第 2 帧的边框,并且两个窗口并排放置而不会重叠边框。
以上是为什么在启用 Windows Aero 的 Java Swing 中并排放置不可调整大小的 JFrame 时会重叠?的详细内容。更多信息请关注PHP中文网其他相关文章!