英文:
Can you stop a jframe's title bar from resizing the jframe without removing it?
问题
这是在设计视图中的jframe图片与实际运行时的对比。标题栏导致一些组件被剪切出框架外。
有没有办法在不移除标题栏的情况下解决这个问题?
我在我的框架上使用了“Null Layout”。
英文:
Is there any way to fix this without removing the title bar?
I'm using "Null Layout" on my frame.
答案1
得分: -1
将以下代码添加到您的构造函数中,就在initcomponents()
方法的下方:
setExtendedState(JFrame.MAXIMIZED_BOTH);
如果这不起作用,请更新您的回答并附上代码。
英文:
Try adding this code into your constructor just below the initcomponents()
method:
setExtendedState(JFrame.MAXIMIZED_BOTH);
If this doesn't work, please update your answer with the code.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论