gpt4 book ai didi

java - JScrollpane 与另一个 JPanel 中的 JPanel

转载 作者:行者123 更新时间:2023-12-01 12:52:21 27 4
gpt4 key购买 nike

我想要一个JScrollpaneJPanel在另一个JPanel添加到我的基本 JFrame

JPanel outer = new JPanel(new GridBagLayout()); 
JPanel drawPanel = new JPanel(new GridBagLayout());
drawPanel.add(new DrawingBoard(500,500));
drawPanel.setBackground(Color.WHITE);
JScrollPane scrollPane = new JScrollPane(drawPanel);
outer.add(scrollPane);
this.add(outer, BorderLayout.CENTER);

如果我添加 JScrollpaneJPanel直接到JFrameJScrollpane工作了。但现在,当我将帧的大小减小到 500 像素以下时,JPanel变小,如第二张图所示。

BEFORE AFTER

我怎样才能制作JScrollPane工作?

最佳答案

GridBagLayout 完全符合预期。当可用空间太小而无法满足组件的首选大小时,它将使用组件的最小大小。

相反,请考虑使用 BorderLayoutEmptyBorder 在滚动 Pane 周围产生空白空间

您还可以使用 GridBagConstraintsweightx/yfillinsets 属性

看看How to use GridBagLayout了解更多详情

关于java - JScrollpane 与另一个 JPanel 中的 JPanel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24129531/

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