Refer to this link to see the image: https://www.dropbox.com/s/byeah81vg1cck5m/output.jpg I want a panel like the picture above. hello , i am a beginner on Java , i would like to know how is it possible to add this icon within a panel with the scrollbar . I have tried with JLabel, here is my code:
JPanel panel = new JPanel();
panel.setLayout(null);
JScrollPane txtstmtPane = new JScrollPane(panel,JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
ImageIcon icon=new ImageIcon ( "icon/filter.jpg" );
JLabel label = new JLabel();
label.setIcon(icon);
label.setBounds(600, 600, 40, 30);
panel.add(label);
txtstmtPane.setViewportView(panel);
add(txtstmtPane);