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?
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?
Make a JPanel
with scrolling using JSCrollPane
this way:
JPanel container = new JPanel();
JScrollPane scrPane = new JScrollPane(container);
add(scrPane);
Details