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.
我想在选项卡面板内的面板中添加一个滚动面板(例如说“A”),并且“A”也在另一个选项卡面板内。我想使用java swing。
JTextArea textArea = new JTextArea(5, 10); JScrollPane scrollPane = new JScrollPane(textArea, JScrollPane.VERTICAL_SCROLLBAR_NEVER, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED); add(scrollPane);
这就是您创建包裹在滚动窗格中的基本文本区域的方式。您应该能够从中工作并实现您想要实现的目标。