1

说,我有一个很大的 JComponent:

Dimension componentSize = new Dimension(5000,5000);

还有一个更小的 JScrollPane:

Dimension scrollPaneSize = new Dimension(500,500);

我想在 JScrollPane 中显示我的 JComponent 的一部分,如下图所示:

JScrollPane 中的 JComponent

白色矩形是我的 JScrollPane,它当前显示从(x1,y1)(x2,y2)的 JComponent 的一部分。


那么,我尝试了什么:

我创建了一个新的 JComponent:

JComponent component = new JComponent(){
    protected void paintComponent(Graphics g)
    {
        // Here I draw a background
    } 
};

并将其作为视口视图放置在 JScrollPane 中:

JScrollPane scrollPane = new JScrollPane();

scrollPane.setViewportView(component);

然后我将 JScrollPane 附加到 JFrame:

JFrame frame = new JFrame();

frame.setLayout(new BorderLayout());

frame.add(scrollPane, BorderLayout.CENTER);

frame.pack();
frame.setVisible(true);

我尝试通过以下方式更改可见区域:

scrollpane.getViewport().setBounds(x1,y1,500,500)

怎么了?

4

2 回答 2

4

setBounds用于确定组件在其父容器中的位置和大小。这不是你想做的。除非您使用的是绝对布局,否则永远不要使用此方法。

相反,尝试

component.scrollRectToVisible(new Rectangle(x1, y1, 500, 500));

反而...

查看JComponent#scrollRectToVisible

于 2013-03-14T00:57:02.793 回答
2

无论视口的大小如何,此代码将始终导致视口滚动。

scrollPane.getViewport().setViewPosition( new Point(x1, y1) );
于 2013-03-14T02:14:47.287 回答