ScrollPane 只显示最小化后的内容
加载带有复选框的窗格然后将其加载回 ScrollPane 后。然后,我只能在先最小化然后恢复窗口后才能看到新内容。
After loading a pane with checkBoxes and then loading that back into the ScrollPane. Then I'm only able to see the new content after first minimizing then restoring the window.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还可以使用 updateUI() 方法,因为
它应该刷新您的图形:)
you can also use updateUI() method as
that shoud refresh you graphics :)
听起来你只需要在切换到 ScrollPane 时对其进行 repaint() 即可。
Sounds like you just need to do a repaint() on your ScrollPane when you switch to it.
使用
topLevelContainer.validate();
在 中工作得很好这个例子。The use of
topLevelContainer.validate();
works just fine in this example.