我在java中使用netbeans创建了全屏jform。我需要创建全屏宽度大小的jtoolbar。我是怎么做到的
此代码用于创建全屏大小jform / jform resize
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
setBounds(0, 0, screenSize.width, screenSize.height);
答案 0 :(得分:0)
使用JToolBar
继承的方法Component::setBounds
。
将工具栏放在TOP:
toolBar.setBounds(0, 0, screenSize.width, yourDesiredHeight);
将工具栏放在BOTTOM:
toolBar.setBounds(0, screensize.height - yourDesiredHeight, screenSize.width, yourDesiredHeight);