Making a JPanel manually resizable(使 JPanel 手动调整大小)
问题描述
我有一个 JFrame 与 BorderLayout 作为布局管理器.
I have a JFrame with BorderLayout as the layout manager.
在南边,我有一个JPanel,我希望这个JPanel的大小可以由用户调整,即用户可以点击边缘边框并将其向上拖动以使其变大.
In the south border, I have a JPanel, I want this JPanel's size to be adjustable by the user, i.e. the user can click on the edge of the border and drag it up to make it larger.
你有什么方法知道我可以做到这一点吗?
Is there any way you know that I can do this?
推荐答案
为了使框架中的面板可以单独调整大小,您需要将它们添加到 JSplitPane.
In order to make panels in a frame individually resizable you need to add them onto a JSplitPane.
不要将它放在框架的南部,而是将 JSplitPane 放在中心.拆分窗格将使拆分中的底部面板看起来像是在南方,而拆分中的顶部面板将位于框架的中心.
Instead of putting it in the South portion of the Frame, put the JSplitPane in the Center. The split pane will make the bottom panel in the split seem like it is in the South, and the top panel in the split will be in the Center of the frame.
确保使用 setOrientation(JSplitPane.VERTICAL_SPLIT) 设置两个面板的方向.
Make sure you set the orientation of the two panels with setOrientation(JSplitPane.VERTICAL_SPLIT ).
然后,您可以调整窗格中的面板大小.
Then, you can resize the panels that are in the pane.
这篇关于使 JPanel 手动调整大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使 JPanel 手动调整大小
基础教程推荐
- 不推荐使用 Api 注释的描述 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 从 python 访问 JVM 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 大摇大摆的枚举 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
