我正在尝试在我的框架中添加一个滚动窗格。但我的问题是滚动窗格可以划分以及如何添加它。
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);
这段代码有效,但我不知道如何在拆分窗格中实现滚动窗格。
最好的问候
曼努埃尔森
尝试使用 JScrolPane 包装窗格例如
JSplitPane splitPane1 = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
new JScrollPane(leftPanel), new JScrollPane(centerPanel));