gpt4 book ai didi

java - 当 setResizeable(false) 时,循环中创建的 Frame 和 Canvas 变得大于指定值

转载 作者:行者123 更新时间:2023-12-02 07:33:52 24 4
gpt4 key购买 nike

我刚刚读过这个答案 https://stackoverflow.com/a/15560624/3211987但是如果我添加 for 循环,第一个 JFrame 的大小就可以了,但其他 JFrame 的大小要大 10 像素。这是一个功能吗?或者为什么会发生这种情况?

只有调用两次frame.pack(),最终的大小才是正确的。

public class TestResizableFrame {
public static void main(String[] args) {
for (int i = 0; i < 25; ++i)
new TestResizableFrame();
}

public TestResizableFrame() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
}

JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.add(new FixedPane());
frame.setResizable(false);
frame.pack(); // if called twice, the size is correct
// frame.pack(); // uncomment to get correct size
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}

public class FixedPane extends JPanel {

@Override
public Dimension getPreferredSize() {
return new Dimension(200, 200);
}

@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Dimension size = getSize();
String text = size.width + "x" + size.height;
FontMetrics fm = g.getFontMetrics();
int x = (getWidth()- fm.stringWidth(text)) / 2;
int y = ((getHeight() - fm.getHeight()) / 2) + fm.getAscent();
g.drawString(text, x, y);
g.setColor(Color.RED);
g.drawRect(0, 0, 199, 199);
}

}

}

最佳答案

这是一个非常有趣的问题,也困扰了我很多。通过一些尝试和错误,我找到了一个对我来说似乎可靠的解决方案。

您必须在 setResizing 之后和 pack

之前调用 setVisible
frame.add(new FixedPane());
frame.setResizable(false);
frame.setVisible(true);
frame.pack();

问题仍然是为什么一定要这样。没有任何关于这些调用顺序的记录。

关于java - 当 setResizeable(false) 时,循环中创建的 Frame 和 Canvas 变得大于指定值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34202253/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com