问题描述
JScrollPanescrollPane=newJScrollPane();//裁剪图片PaneljPrintClipImagePanel=newJPrintClipImagePanel(path,isClip);//增加滚动条this.scrollPane.add(jPrintClipImagePanel);//水平this.scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);//垂直this.scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
这样无法正常显示JScrollPane(JScrollPane无长宽,无法根据jPrintClipImagePanel,设置相应长宽),而是使用this.scrollPane=newJScrollPane(jPrintClipImagePanel);就可以。为什么呢?
时间: 2024-09-26 20:54:56