Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对某些对象的大小有疑问,例如 JList。如果我添加一个元素,列表的大小将会增加。这很好,但是如果我添加了很多元素,JList 将在我的应用程序的窗口之外,我看不到它的底部(抱歉语法错误)。我怎样才能使尺寸保持不变,它不会“低于”我的窗口尺寸。
马蒂斯
您可以将列表添加到JScrollPane然后滚动窗格到您的面板,如下所示:
JScrollPane
JScrollPane scroll = new JScrollPane(yourJList, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED); yourPanel.add(scrollPane);