使用 CardLayout 更改 JPanel 的大小
使用 Java CardLayout 时是否可以更改 Jpanels 的大小?
is it possible to change the size of Jpanels when using Java CardLayout?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
拍摄,类似这样的组件(这里是 JLabel 而不是 JPanel)设置了它的 PreferredSize,然后将其放置在另一个使用适当布局的 JPanel 中,这里的 GridBagLayout 使用默认设置将使组件居中,并使用添加 GridBagLayout使用 panel:: JPanel 到 CardLayout
shoot, something like this where the component (here a JLabel rather than a JPanel) has it's preferredSize set, then place it in another JPanel that uses an appropriate layout, here GridBagLayout which with default settings will center the component, and add the GridBagLayout using JPanel to the CardLayout using panel::