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.
我有一长串要在 jtabbedpanel 上显示的数据,在向下滚动数据时,顶部的选项卡式面板名称将不可见。即使向下滚动,如何使选项卡式面板选项卡在顶部可见?
任何人都可以帮助我解决这个问题,或者提到一些关于相同的帖子吗?
提前致谢 。
从它的声音来看,您正在JTabbedPane将JScrollPane.
JTabbedPane
JScrollPane
相反,将每个选项卡的组件添加到 aJScrollPane然后将其(滚动窗格)添加为选项卡...
IE...
JScrollPane scrollPane = new JScrollPane(reallyLargePane); tabbedPane.addTab("Another tab", scrollPane);