Could you please tell me how can I refresh viewPort or maximizing and minimizing the window in JScrollPane. I know I may have to called repaint or revalidate but I do not how write listener for that.

Minimize window enter image description here

Maximize window enter image description here

有帮助吗?

解决方案

The content should implement Scrollable:

public boolean scrollableTracksViewportWidth() {
    return true;
}

This will also block horizontal scrolling.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top