我有这个小程序在apanel上显示图像..但我无法添加滚动到它..这是我的代码
扩展jpanel以显示图像的类:
public class ShowPanel extends JPanel{
public ShowPanel(BufferedImage image, int height, int width) {
this.image = image;
this.height = height;
this.width = width;
//this.setBounds(width, width, width, height);
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
g.drawImage(image, height, width, null);
}
public void setImage(BufferedImage image, int height, int width) {
this.image = image;
this.height = height;
this.width = width;
}
private BufferedImage image;
private int height;
private int width;
}
并且主框架的示例包含另一个名为imageContainer的面板来保存显示面板:
public class MainFrame extends javax.swing.JFrame {
/** Creates new form MainFrame */
public MainFrame() {
initComponents();
image = null;
path = "PantherOnLadder.gif";
image = Actions.loadImage(path);
showPanel = new ShowPanel(image, 0, 0);
spY = toolBar.getY() + toolBar.getHeight();
showPanel.setBounds(0, spY, image.getWidth(), image.getHeight());
showPanel.repaint();
imageContainer.add(showPanel);
JScrollPane scroller = new JScrollPane(imageContainer);
scroller.setAutoscrolls(true);
}
那么我在这里犯的错误是什么?
答案 0 :(得分:6)
当添加到滚动窗格的组件的首选大小超出滚动窗格的大小时,滚动条会自动显示。您的自定义面板没有首选大小,因此滚动条永远不会出现。一种解决方案是返回一个等于图像大小的首选大小。
当然,我永远不明白为什么人们会为了这种类型的自定义绘画而烦恼。不需要自定义类。只需从BufferedImage创建一个ImageIcon,然后将Icon添加到JLable,然后将标签添加到滚动窗格,您将不会遇到任何这些问题。进行自定义绘画的唯一原因是,如果您需要缩放图像或提供其他一些奇特的效果。
答案 1 :(得分:1)
由于'imagecontainer'是添加到可滚动面板的类,因此面板需要超过一定的大小才能使其可滚动。您应该将'showPanel'直接放入可分解的容器中。