不可调整大小的窗口边框和定位
在使用不可调整大小的 JFrame 并启用 Windows Aero 的情况下,setLocation 方法的行为在考虑窗口边框时可能会显得不一致。
为了说明此行为,请考虑以下代码snippet:
import java.awt.Rectangle; import javax.swing.JFrame; public class FrameBorders { 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); } }
使用此代码,您可能期望frame2 位于frame1 的右侧。但是,当启用 Windows Aero 时,两个框架的边框会重叠。
说明和解决方案
Windows Aero 对不可调整大小的窗口应用不同的样式,导致较粗的边框。由于 setLocation 方法考虑窗口的原始尺寸而不考虑边框厚度,因此它错误地定位了窗口,导致重叠问题。
要实现并排放置的两个不可调整大小的框架的所需行为,无需重叠边框,您可以:
以上是为什么使用 Windows Aero 时不可调整大小的 JFrame 会重叠?的详细内容。更多信息请关注PHP中文网其他相关文章!