如何最大化 JFrame 的高度?
Windows 不支持 myFrame.setExtendedState(JFrame.MAXIMIZED_VERT);
。
所以我尝试获取屏幕尺寸并使 JFrames 高度与屏幕高度一样大。但随后它会覆盖 Windows 任务栏。
还有其他方法可以垂直最大化我的 JFrame 吗?
谢谢,
埃萨尼特
Windows doesn't support myFrame.setExtendedState(JFrame.MAXIMIZED_VERT);
.
So I tried to get the screen size and made the JFrames height as big as the screens height. But then it covers the Windows taskbar.
Is there any other way to maximize my JFrame vertcially?
Thanks,
esanits
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个,伙计:
try this out, buddy:
以下是获取有关窗口和框架的基本信息的一种方法:
Here is one way to get basic info about the window and the frame:
我不确定这是否是最好的方法,但它对我有用......
I'm not sure if this is the best way, but it worked for me...