Force JList to NOT wrap at all?

╄→гoц情女王★ 提交于 2020-04-14 13:11:31

问题


Is there a possibility to force JLists to display all items on one line? setOrientationLayout() does not give you that option.


回答1:


list.setLayoutOrientation(JList.HORIZONTAL_WRAP);
list.setVisibleRowCount(1);


来源:https://stackoverflow.com/questions/7144689/force-jlist-to-not-wrap-at-all

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!