Add scroll in window [closed]

-1

I created a window that was Width 360 x Height 800. Only 800 tall can not be seen on the monitor.

How do I add a scroll in the window?

    
asked by anonymous 29.09.2016 / 19:56

1 answer

0

Make a JPanel with scrolling using JSCrollPane this way:

JPanel container = new JPanel();
JScrollPane scrPane = new JScrollPane(container);
add(scrPane);

Details

29.09.2016 / 20:05