如何创建全屏宽度的jtoolbar

How to create Full Screen width jtoolbar

我在 java 中使用 netbeans 创建了全屏 jform。我需要创建全屏宽度大小的 jtoolbar。我该怎么做?

我使用此代码创建全屏大小的 jform / jform resize

Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
setBounds(0, 0, screenSize.width, screenSize.height);

使用JToolBar inherithed method Component::setBounds.

将工具栏放在顶部:

toolBar.setBounds(0, 0, screenSize.width, yourDesiredHeight);

将工具栏放在底部:

toolBar.setBounds(0, screensize.height - yourDesiredHeight, screenSize.width, yourDesiredHeight);