我正在开发一个管理图像过滤器等的应用程序。
当图像太大而无法显示时,我希望有滚动条。我将扩展的自定义面板JPanel
放在 a 中JScrollPane
,然后将其添加到我的JFrame
.
我的图像显示但不是整个图像,滚动条不存在。
如何让滚动条出现?
这是我的代码:
CustomePanel test = new ImagePanel(new File("test.jpg"));
test.setPreferredSize(new Dimension(400, 400));
JScrollPane tmp = new JScrollPane(test);
this.getContentPane().add(tmp);