我想在框架中添加一个滚动窗格。但我的问题是滚动窗格可以划分,以及如何添加它。
JPanel leftPanel = leftSection();
JPanel centerPanel = middleSection();
JPanel rightPanel = rigntSection();
JSplitPane splitPane1 = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, leftPanel, centerPanel);
JSplitPane splitPane2 = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, splitPane1, rightPanel); //--> I wanna add it here but dont know how.
splitPane1.setVisible(true);
splitPane2.setVisible(true);
此代码有效,但我不知道如何在Splitpane中实现Scrollpane。
最好的问候
马纽埃尔森
答案 0 :(得分:0)
尝试使用JScrolPane包装窗格 e.g。
JSplitPane splitPane1 = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
new JScrollPane(leftPanel), new JScrollPane(centerPanel));