Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>To make the scrollbar always appear, use:</p> <pre><code>yourScrollBar.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS); </code></pre> <p>...</p> <pre><code>import javax.swing.*; import java.awt.*; public class Window { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub //namestanje teme try { UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); } catch (ClassNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (InstantiationException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IllegalAccessException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (UnsupportedLookAndFeelException e) { // TODO Auto-generated catch block e.printStackTrace(); } JFrame frame = new JFrame("frame"); // frame.setExtendedState(JFrame.MAXIMIZED_BOTH); frame.setPreferredSize(new Dimension(100,95)); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JPanel panel = new JPanel(); JButton but1 = new JButton(); JButton but2 = new JButton(); panel.add(but1); panel.add(but2); but1.setSize(50, 505); but2.setSize(50, 505); but1.setLocation(0, 0); but2.setLocation(400, 400); but1.setText("1"); but2.setText("2"); JScrollPane scroll = new JScrollPane(panel); scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS); frame.setLayout(new FlowLayout()); frame.pack(); frame.add(scroll); frame.setVisible(true); } } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload