如何创建全屏宽度jtoolbar

时间:2015-08-20 10:39:42

标签: java jtoolbar

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

此代码用于创建全屏大小jform / jform resize

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

1 个答案:

答案 0 :(得分:0)

使用JToolBar继承的方法Component::setBounds

将工具栏放在TOP:

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

将工具栏放在BOTTOM:

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