我在其他jPanel(panelB)中添加了许多jPanel(panelF)。 jPanelF包含jPanelC。
我已将布局设置为按如下方式添加:
PanelB.setLayout(new BoxLayout(this.PanelB, BoxLayout.PAGE_AXIS));
PanelF panelF1 = new PanelF();
PanelB.add(panelF1);
PanelF panelF2 = new PanelF();
PanelB.add(panelF2);
我在jPanelC1中设置了可见的false。但JPanelF2保留距离而不想制作那个空白
我想要的是在消失JPanelC1时。 jPanelF之间保持距离而不是空白区域。 我尝试了validate()并更改了布局但是我失败了。会是什么样的? 非常感谢你。对不起我的英文
知道是否有类似$("#panelC1").FadeOut(" slow")?会是理想的。
答案 0 :(得分:3)
调用panelC1.setVisible(false)
会使panelC1
不可见,但它不会更改get[Preferred|Maximum|Minimum]Size
方法定义的几何体。你可以
从封闭的panelC1
移除panelF1
,如here所示,并在再次显示时将其恢复。
使用Box
以外的布局。
答案 1 :(得分:3)
(这是垂直布局的演示,而不是答案本身)。
根据我对您的理解方式,VerticalLayout
可能是首选解决方案......
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.EventQueue;
import java.awt.GridBagLayout;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.Box;
import javax.swing.BoxLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.border.LineBorder;
import org.jdesktop.swingx.VerticalLayout;
public class VerticalLayoutTest {
public static void main(String[] args) {
new VerticalLayoutTest();
}
public VerticalLayoutTest() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
}
JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class TestPane extends JPanel {
public TestPane() {
setLayout(new VerticalLayout());
JPanel outter = new JPanel(new BorderLayout());
outter.setBorder(new LineBorder(Color.BLACK));
outter.add(new JLabel("Outter 1"), BorderLayout.NORTH);
JPanel inner = new JPanel(new GridBagLayout());
inner.setBackground(Color.GREEN);
inner.add(new JLabel("Inner 1"));
outter.add(inner);
add(outter);
inner.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
Component component = e.getComponent();
component.setVisible(false);
component.invalidate();
component.validate();
revalidate();
repaint();
}
});
add(Box.createVerticalGlue());
outter = new JPanel(new BorderLayout());
outter.setBorder(new LineBorder(Color.BLACK));
outter.add(new JLabel("Outter 1"), BorderLayout.NORTH);
inner = new JPanel(new GridBagLayout());
inner.setBackground(Color.GREEN);
inner.add(new JLabel("Inner 1"));
outter.add(inner);
add(outter);
}
}
}
答案 2 :(得分:0)
如果我理解正确,你希望panelF1在其中的面板被隐藏时保持其大小。有几种方法可以实现这一目标。根据布局的设置方式,您可以在panelF1上调用setMinimumSize()
,并确保其最小尺寸略大于panelC1的首选尺寸。
更灵活(也可能更合适)的方法是通过布局管理器本身。阅读tutorial on BoxLayout,如果它没有按照您的意愿行事,请尝试使用其他布局管理器。 GroupLayout
和GridBagLayout
都非常灵活,但也很难管理。我最近成了MigLayout的粉丝。
修改强>
好吧,我猜你因为图片和文字的布局如何结束而误解了你的问题。它实际上比我想象的要容易。看看我链接的BoxLayout教程 - 我认为你正在寻找的是:
PanelB.add(panelF1);
PanelB.add(Box.createVerticalGlue()):
PanelB.add(panelF2);