我想在JFrame
位置B旁边设置JFrame
A的位置。
我的代码是:
JFrame instance = A;
B.setLocation(instance.getLocation().x+instance.getSize().width
, instance.getLocation().y+0);
但我得到JFrames
之间的空格。
看图片:IMAGE EXAMPLE
我该如何解决?是否有一些边界偏移?