gpt4 book ai didi

java - 如何在BorderLayout中实现JSplitPane?

转载 作者:行者123 更新时间:2023-11-30 05:14:46 24 4
gpt4 key购买 nike

嗨,

我如何使用 JSplitPane 以便它们显示在 BorderLayout 的边框中???

这样我就可以调整每个尺寸(北、东、西、南、中心)。

谢谢

最佳答案

为此,您实际上并不需要 BorderLayout。您可以将分割 Pane 添加在一起以获得该效果。由于 JSplitPane 仅支持拆分 2 个组件,因此您需要垂直放置 2 个 JSplitPane,并在第二个垂直 JSplitPane 内放置 2 个 JSplitPane >.

JSplitPane horizontal1 = new JSplitPane(
JSplitPane.HORIZONTAL_SPLIT, yourCenterPanel, yourEastPanel);
JSplitPane horizontal2 = new JSplitPane(
JSplitPane.HORIZONTAL_SPLIT, yourWestPanel, horizontal1);
JSplitPane vertical1 = new JSplitPane(
JSplitPane.VERTICAL_SPLIT, horizontal2, yourSouthPanel);
JSplitPane vertical2 = new JSplitPane(
JSplitPane.VERTICAL_SPLIT, yourNorthPanel, vertical1);
whateverPlaceYouWant.add(vertical2);

关于java - 如何在BorderLayout中实现JSplitPane?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1989041/

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