new JScrollPane(Component view, int vsbPolicy, int hsbPolicy) : JScrollPane « javax.swing « Java by API






new JScrollPane(Component view, int vsbPolicy, int hsbPolicy)

  
import java.awt.BorderLayout;
import java.awt.GridLayout;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.ScrollPaneConstants;

public class MainClass extends JPanel {

  public MainClass() {
    setLayout(new BorderLayout());

    JPanel jp = new JPanel();
    jp.setLayout(new GridLayout(20, 20));
    int b = 0;
    for (int i = 0; i < 20; i++) {
      for (int j = 0; j < 20; j++) {
        jp.add(new JButton("Button " + b));
        ++b;
      }
    }

    // Add panel to a scroll pane.
    int v = ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
    int h = ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
    JScrollPane jsp = new JScrollPane(jp, v, h);

    // Add scroll pane to the content pane.
    add(jsp, BorderLayout.CENTER);

  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.getContentPane().add(new MainClass());

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(200, 200);
    frame.setVisible(true);
  }
}

           
         
    
  








Related examples in the same category

1.JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS
2.JScrollPane.VERTICAL_SCROLLBAR_ALWAYS
3.JScrollPane: getHorizontalScrollBar()
4.JScrollPane: getHorizontalScrollBarPolicy()
5.JScrollPane: getVerticalScrollBar()
6.JScrollPane: getVerticalScrollBarPolicy()
7.JScrollPane: setColumnHeaderView(Component view)
8.JScrollPane: setCorner(String key, Component corner)
9.JScrollPane: setRowHeaderView(Component com)
10.JScrollPane: setViewportView(Component view)