我在JPanel的JScrollPane中创建了一个JScrollbar(带有自定义UI)和一个JTextArea。我不想将滚动条添加为滚动窗格的水平滚动条,因为我希望能够定位它。
我尝试在滚动条上设置模型并将其添加到面板(请参阅代码),但这不起作用 - 拇指尺寸不正确(它总是跨越整个轨道)并且没有定位正确。
JPanel panel = new JPanel();
JTextArea textArea = new JTextArea(col, rows);
JScrollPane scrollPane = new JScrollPane(textArea);
JScrollBar scrollBar = new JScrollBar();
scrollBar.setModel(scrollPane.getHorizontalScrollBar().getModel());
panel.add(textArea);
panel.add(scrollPane);
panel.add(scrollBar)
如何将滚动条链接到我的文本区域,以便拇指大小和行为正确并且仍能设置滚动条的位置和尺寸?
谢谢!
答案 0 :(得分:0)
如果您想要默认行为 - 您已经这样做了。您需要向JScrollPane
添加一些组件才能真正看到它。
以下是一个例子:
public final class Test {
public static void main(String[] a) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Container pane = frame.getContentPane();
JPanel panel = new JPanel();
JTextArea textArea = new JTextArea(2, 10);
JScrollPane scrollPane = new JScrollPane(textArea);
JScrollBar scrollBar = new JScrollBar();//new JScrollBar(SwingConstants.HORIZONTAL);
scrollBar.setModel(scrollPane.getHorizontalScrollBar().getModel());
panel.add(textArea);
panel.add(scrollPane);
JPanel internal = new JPanel();
for(int i = 0; i < 20; ++i) {
internal.add(new JLabel("TEXT"));
}
scrollPane.setViewportView(internal);
scrollPane.setPreferredSize(new Dimension(100, 100));
panel.add(scrollBar);
pane.add(panel);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
}