在 groovy 中滚动图像?

scroll around a image in groovy?

IM 试图在 groovy 中滚动图像但不起作用

IM 使用此代码并显示图像静态

我如何使用此代码滚动

panel(layout: new BorderLayout()) {
    scrollPane(size:[100,100],    
    verticalScrollBarPolicy:JScrollPane.VERTICAL_SCROLLBAR_ALWAYS) {
        panel(size:[200,100]) {
            label(icon: imageIcon(new URL("file:pokemon.png")))
        }
    }
}

请帮帮我

最后我用这个解决了

  scrollPane(id:'scroll',preferredSize: [200,200], constraints: context.CENTER) {



    panel(layout: new FlowLayout()) {


        label(icon: imageIcon(new URL('file:///path/pokemon.png')))
    }


      }