框布局组件在按钮可见和不可见时移动


JPanel panel = new JPanel();
panel.setLayout(new BoxLayout(panel, BoxLayout.PAGE_AXIS));
JPanel topPanel = new JPanel(new FlowLayout());
.....
JPanel centrePanel = new JPanel(new FlowLayout(10, 0));
........
JScrollPane scrollPane = new JScrollPane(table);
scrollPane.setPreferredSize(new Dimension(100, 160));
centrePanel.add(glListScrollPane);
........
........

JPanel bottomPanel = new JPanel();
bottomPanel.setLayout(new GridLayout(0, 2));
......
........
panel.add(topPanel, BorderLayout.CENTER);
panel.add(centrePanel, BorderLayout.CENTER);
panel.add(bottomPanel, BorderLayout.CENTER);
frame.add(panel);
frame.add(standardButtonPanel);

public void lockScreen(boolean editable) {
standardButtonPanel.button1.setVisible(editable);
......
}

在编辑和取消编辑时。面板稍微改变了一下位置。我使用了BoxLayout,因为我想让组件有自己的大小,用户也可以调整屏幕的大小。还有其他方法吗?我可以在哪里解决布局问题?

不使用setVisible,尝试使用setEnabled,因为它不隐藏按钮(因此不影响UI),但使最终用户无法按下按钮

相关内容

  • 没有找到相关文章

最新更新