3

我有这个用于在面板上显示图像的小程序.. 但我无法为其添加滚动条.. 这是我的代码

扩展 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;

}

和一个主 Frame 的示例,它有另一个名为 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);


}

那么我在这里犯了什么错误?

4

2 回答 2

6

当添加到滚动窗格的组件的首选大小超过滚动窗格的大小时,滚动条会自动出现。您的自定义面板没有首选大小,因此滚动条永远不会出现。一种解决方案是只返回与图像大小相等的首选大小。

当然,我永远不明白为什么人们会不厌其烦地做这种定制绘画。不需要自定义类。只需从 BufferedImage 创建一个 ImageIcon,然后将 Icon 添加到 JLable,然后将标签添加到滚动窗格,您就不会遇到任何这些问题。进行自定义绘画的唯一原因是如果您需要缩放图像或提供其他一些花哨的效果。

于 2009-11-06T20:08:14.363 回答
1

由于“imagecontainer”是添加到可滚动面板的类,因此该面板需要超过一定大小才能使内容可滚动。您应该将“showPanel”直接放入可缩放的容器中。

于 2009-11-06T19:44:05.433 回答