我有一个带有滚动窗格tabbedPane_1
的标签式窗格scrlPnAddServer
,其视口视图设置为pnlAddServer
。如何在滚动窗格的可查看部分下添加文本字段或其他项目。 (并允许用户向下滚动以查看项目)目前,当超出范围时,项目才会显示。
JTabbedPane tabbedPane_1 = new JTabbedPane(JTabbedPane.TOP);
tabbedPane_1.setBounds(672, 20, 350, 400);
panel.add(tabbedPane_1);
JPanel tab = new JPanel();
tabbedPane_1.add("Build", tab);
tab.setLayout(null);
JPanel tab2 = new JPanel();
tabbedPane_1.add("More...", tab2);
tab2.setLayout(null);
JScrollPane scrlPnAddServer = new JScrollPane();
scrlPnAddServer.setBounds(0, 0, 350, 370);
tab2.add(scrlPnAddServer);
scrlPnAddServer.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
JPanel pnlAddServer = new JPanel();
pnlAddServer.setBounds(0, 0, 350, 370);
scrlPnAddServer.setViewportView(pnlAddServer);
pnlAddServer.setLayout(null);
然后我添加了我希望用户向下滚动的项目:
tfSaveAs = new JTextField("Save As");
tfSaveAs.setBounds(10, 600, 125, 20);
pnlAddServer.add(tfSaveAs);
tfSaveAs.setColumns(10);
答案 0 :(得分:2)
使用适当的布局管理器,该管理器能够计算所需的信息,JScrollPane
用它来决定是否显示滚动条。
这只是众多" auto magical"布局管理API提供的方面
避免使用null
布局,像素完美布局是现代ui设计中的一种幻觉。影响组件个体大小的因素太多,您无法控制。 Swing旨在与布局管理器一起工作,放弃这些将导致问题和问题的终结,您将花费越来越多的时间来纠正
有关详细信息,请参阅Laying Out Components Within a Container