Java GUI repaint() 问题?

发布于 2024-07-10 03:52:08 字数 490 浏览 7 评论 0原文

我有一个 JFrame。 该 JFrame 包含一个 JButton。 我单击 JButton,然后创建了 10 个 JTextField。

问题: 在通过调整窗口大小“强制重新绘制()”之前我看不到它们。 只有这样我才能看到创建的 JTextFields。

代码:

JPanel points = new JPanel();

//Creating the JTextFields:
for (int i=0; i<10; i++) {
    JTextField textField = new JTextField();
    points.add(textField);
}

repaint();
this.repaint();
super.repaint();
points.repaint();

谢谢 - 在 for 循环之后,我刚刚调用了 points.validate() 并且它起作用了......

I have a JFrame. This JFrame contains a JButton. I click the JButton and 10 JTextFields are created.

the problem:
I cannot see them until "I force a repaint()" by resizing the window. Only then do I see the JTextFields created.

CODE:

JPanel points = new JPanel();

//Creating the JTextFields:
for (int i=0; i<10; i++) {
    JTextField textField = new JTextField();
    points.add(textField);
}

repaint();
this.repaint();
super.repaint();
points.repaint();

THANK YOU - after the for loop, I just called points.validate() and it worked...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是偏爱你 2024-07-17 03:52:08

容器.add API 文档说:

注意:如果组件已添加到
已显示的容器,
必须对此调用 validate
用于显示新内容的容器
成分。 如果有多个组件
添加后,您可以改进
仅调用 validate 来提高效率
一次,在所有组件都完成之后
已添加。

这很晦涩,也不是很聪明,但这就是规则。 调用 JComponent.revalidate 可能会更好

Container.add API docs sayeth:

Note: If a component has been added to
a container that has been displayed,
validate must be called on that
container to display the new
component. If multiple components are
being added, you can improve
efficiency by calling validate only
once, after all the components have
been added.

It's obscure and not very clever, but it's the rules. It may be better to call JComponent.revalidate

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文