问题描述
我在java.now的netbeans平台上制作了桌面应用程序。当我运行我的应用程序时,它将打开默认大小的netbeans平台配置。但是当我运行或启动我的应用程序时我想要全屏模式。那么在我的应用程序中在哪里以及如何做到这一点?
I m made Desktop App in netbeans platform in java.now wwhen i run my app it will open by default size of netbeans platform configuration.but i want full screen mode when i run or startup my app. so where and how to do that in my app?
推荐答案
如果你想打开默认情况下最大化的JFrame你可以使用 JFrame。 setExtendedState()
,如下图所示:
If you want to open the JFrame maximized by default in swing you can use JFrame. setExtendedState()
, illusrated below:
public class MyFrame extends JFrame{
public MyFrame() {
// Other codes
// Set the JFrame to maximize by default on opening
setExtendedState(JFrame.MAXIMIZED_BOTH);
// Rest of the program
}
}
另请记住,您不应该 JFrame.pack()
或 JFrame.setMaximimumSize()
或 JFrame.setSize()
在同一个menthod(这里是构造函数)。
Also remember that you should not have JFrame.pack()
or JFrame.setMaximimumSize()
or JFrame.setSize()
in the same menthod (here constructor).
这篇关于如何在netbeans平台上设置My App的全屏模式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!