SS7-java-63-scrollpane
SS7-java-63-scrollpane
import javax.swing.*;
import java.awt.*;
public class AJPPR62 extends JFrame
{
AJPPR62()
{
FlowLayout f = new FlowLayout();
setLayout(f);
JButton b1 = new JButton("This button is inside a
Scrollpane");
JScrollPane s = new
JScrollPane(b1,ScrollPaneConstants.VERTICAL_SCROLLBAR
_ALWAYS,ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWA
YS);
add(s);
}
public static void main(String args[])
{ AJPPR62 a = new AJPPR62();
a.setSize(500,500);
a.setVisible(true);
}
}
Output: