gpt4 book ai didi

java - 如何使 JPanel 在 SplitPane 中采用 100% 宽度和高度

转载 作者:行者123 更新时间:2023-12-01 19:33:12 25 4
gpt4 key购买 nike

所以我有一个 splitPane,其两侧包含 2 个面板。其中一个面板是经过检查的面板(分成正方形),但它周围有意想不到的边距。这是我的意思的屏幕截图 http://prntscr.com/pxwfsk 。我怎样才能摆脱这些利润,因为对于我的程序来说这是至关重要的。预先感谢。以下是负责创建 splitPane 和 JPanel 的代码的一部分:

        public static void workingFrame() throws InterruptedException {

String frameName = "Bot World";

World world = new World(); // creating right side with world for bots

WorkFrame workF = new WorkFrame(0, 0, frameName);
wfFrame = workF.newFrame();
wfFrame.setExtendedState(JFrame.MAXIMIZED_BOTH);
wfFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

JSplitPane splitPane = new JSplitPane();
splitPane.setSize(width, height);
// splitPane.setDividerSize(1);
// splitPane.setDividerLocation(149);
splitPane.setOrientation(JSplitPane.VERTICAL_SPLIT);

JPanel panelLeft = createLftPanel();
JPanel panelRight = world.createRightPanel();

splitPane.setLeftComponent(panelLeft);
splitPane.setRightComponent(panelRight);
wfFrame.add(splitPane);

wfFrame.revalidate();
wfFrame.setVisible(true);

// WE NEED THIS HERE because otherwise PC is not fast enough to establish all the JPanles inside the main panel
// and thus later on we cannot use method GetComponent();
Thread.sleep(1000);
// create bots on random location on panels
for (int i = 0; i < 1; i++) {
world.createBots();
// add counter to start counting bots on a map
}

for (int i = 0; i < 1; i++) {
// create food in this world
world.createFood();
}

wfFrame.revalidate();

while (world.bots.size() > 0) {
for (Bot bot : world.bots) {
if (bot.isAlive) {
bot.seePathInDirection(panelRight);
Thread.sleep(500);
wfFrame.revalidate();
}
Thread.sleep(500);
wfFrame.revalidate();
}
}
}
}

和createRightPanel方法:

    public static JPanel createRightPanel() {
JPanel panel = new JPanel();

panel.setLayout(new GridLayout(ROWS, COLS));
for (int i = 0; i < ROWS; i++) {
for (int j = 0; j < COLS; j++) {
JPanel pane = new JPanel();
pane.setBackground(Color.WHITE);
pane.setBorder(BorderFactory.createLineBorder(Color.black));
panel.add(pane);
}
}
botWorld = panel;
return panel;
}

最佳答案

您的代码存在一些“问题”。首先,不要使用组件的 setSize (也不要使用 setPreferredSize)方法。让布局管理器计算其大小和位置。

不要在Event Dispatch Thread中使用Thread.sleep() 。它将卡住整个 GUI。由于线程处于 hibernate 状态,因此事件无法发生。考虑using a Swing TimerSwing Worker .

为什么会遇到这个问题?

因为网格布局将为其所有组件提供相同的大小。实际上很难得到它,所以我会尝试用一个例子来解释它。

考虑一个具有网格布局的面板,只有 1 行和 10 列。您尝试向其中添加 10 个组件。该面板的宽度等于 100。网格布局将为每个组件提供 10 宽度,因此 10x10 = 100。

现在,考虑这个面板的宽度为 102。gridlayout 将如何平均分配它?不可以。因此,它将让左侧 1 个像素为空,右侧 1 个像素为空。这正是你所面对的。由于 GridLayout 无法平均共享宽度(和高度),因此它会让其为空。如果你把 window 做得更大,在某一时刻,空间就足以均匀地容纳它们:

查看此 .gif:

gif

当宽度等于795-801时,网格布局无法与一行20个组件平均共享空间。当它变成 802 时,让你烦恼的边距就消失了。这是因为行中有 20 个组件/每个组件的 800 = 40 宽度。 +2 左右边框(绿色边框)。

产生此行为的代码:

public class Example extends JFrame implements ComponentListener {
private static final int ROWS = 20;
private static final int COLUMNS = 20;
private JLabel widthLabel;
private JPanel greenPanel;

public Example() {
super("test");
setDefaultCloseOperation(EXIT_ON_CLOSE);
setLayout(new BorderLayout());

JPanel redPanel = new JPanel();
redPanel.setBorder(BorderFactory.createLineBorder(Color.RED, 1));

widthLabel = new JLabel();
redPanel.add(widthLabel);

greenPanel = new JPanel(new GridLayout(ROWS, COLUMNS));
greenPanel.setBorder(BorderFactory.createLineBorder(Color.GREEN, 1));
greenPanel.addComponentListener(this);
for (int i = 0; i < ROWS * COLUMNS; i++) {
JPanel panel = new JPanel(new BorderLayout());
panel.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2));

greenPanel.add(panel);
}

JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, redPanel, greenPanel);

add(splitPane);
setLocationByPlatform(true);
pack();
}

public static void main(String[] args) {
SwingUtilities.invokeLater(() -> {
new Example().setVisible(true);
});
}

@Override
public void componentResized(ComponentEvent e) {
widthLabel.setText("Green panel's width: " + greenPanel.getWidth());
}

@Override
public void componentMoved(ComponentEvent e) {
}

@Override
public void componentShown(ComponentEvent e) {
}

@Override
public void componentHidden(ComponentEvent e) {
}

}

回答你的评论,没有。网格布局内的组件类型无关紧要。所以无论是否有 JPanel,它都没有任何作用。

关于java - 如何使 JPanel 在 SplitPane 中采用 100% 宽度和高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58894555/

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