如何删除框架的活动标题栏?
我有一个显示标题栏的 JFrame。活动标题栏,如 Windows 桌面属性中所称。如何去掉这个栏?
I have a JFrame which displays a title bar. Active title bar as it's called in Windows desktop properties. How to remove this bar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 JFrame 中使用 setUndecorated(boolean undecorated) 方法。
注意:该方法只能在框架不可显示时调用。
You can use setUndecorated(boolean undecorated) method in JFrame.
Note: This method can only be called while the frame is not displayable.
框架有标题栏
窗户没有
查看 http://academicjava.com/Java_help/Tutorial_Examples_Swing_5.html 示例
frames have titlebars
windows do not
check out http://academicjava.com/Java_help/Tutorial_Examples_Swing_5.html for examples