以下の画像に示すように、私のコードでSlit Paneを非表示にする必要があります。 Java SwingベースのGUIで分割ペインを非表示/非表示にする方法がわかりません。私のコードでは、分割ペインを2つの水平パーツに分割し、その後、分割ペインの右側のコンポーネントを2つの垂直パーツに分割します。私は分割ペインの左の部分を非表示/非表示にしたい。Java SwingベースのGUIでSplitPaneを非表示/非表示にする方法
import java.awt.*;
import java.awt.Event.*;
import javax.swing.*;
class DemoSwingDesign extends JFrame {
boolean b = false;
public static JSplitPane splitpane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, true);
public static JSplitPane splitpane1 = new JSplitPane(JSplitPane.VERTICAL_SPLIT, true);
public DemoSwingDesign() {
JFrame frame = new JFrame("Split Pain");
frame.setSize(300, 300);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setDefaultLookAndFeelDecorated(true);
frame.setLayout(new GridLayout());
//Defining Split Pane
//splitpane size
splitpane.setDividerLocation(150);
splitpane1.setDividerLocation(90);
splitpane.setContinuousLayout(true);
splitpane.setOneTouchExpandable(true);
JTabbedPane jtp = new JTabbedPane();
jtp.setName("XRay");
JTabbedPane jtp1 = new JTabbedPane();
JTabbedPane jtp2 = new JTabbedPane();
jtp1.setName("Set");
jtp2.setName("OK");
JPanel jp = new JPanel(new BorderLayout());
JComponent Lefttabbedpane = new JTabbedPane();
jp.add(jtp, -1);
Lefttabbedpane = jtp;
splitpane.add(splitpane1, "right");
splitpane.setLeftComponent(new JScrollPane(jtp2));
splitpane1.setTopComponent(new JScrollPane(jtp1));
splitpane1.setBottomComponent(new JScrollPane(Lefttabbedpane));
frame.add(splitpane);
frame.setVisible(true);
}
}
class Temp {
public static void main(String args[]) {
DemoSwingDesign d = new DemoSwingDesign();
}
}
は、このリンク http://stackoverflow.com/questions/6836164を見てみましょう/ jsplitpaneは、ある意味での表示のためのものです。 http://stackoverflow.com/questions/4934499/how-to-set-jsplitpane-divider-collapse-expand-state – Nag