简体   繁体   中英

show vertical scrollbar of jscrollpane at the top

I have a JScrollPane containing a JPanel.JPanel consist of one JCombobox,one JTextfield,4 JTextarea whose values are depend on selected item in combobox. Problem is vertical scrollbar of scrollpane always start at the bottom.

I tried with

scrollPane.getVerticalScrollBar().setValue(0);

and also tried with

scrollPane.getViewport().setViewPosition(new Point(0,0));

but nothing seems work.Any help would be appreciated.

Wrap the call scrollPane.getVerticalScrollBar().setValue(0); in SwingUtilities.invokeLater() to let content layout be done first.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM