最大化和关闭按钮

最大化和关闭按钮

本文介绍了如何在Java中的JFrame窗口中隐藏默认的最小/最大化和关闭按钮?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道是否可以创建一个没有默认的最大化/最小化(-)和关闭(x)按钮的JFrame窗口!我在每个框架上都添加了自定义按钮,以便用户不必在窗口右上角的默认按钮上乱七八糟!

I would like to know if it is possible to create a JFrame window which has no default maximize/minimize(-) and close(x) buttons! I have added custom buttons on each frame so that the user does not have to mess around with the default ones on the top right corner of the window!

推荐答案

您可以使用 JWindow ,因为默认情况下是未修饰的,但是您可以 setUndecorated() for JFrame/JDialog

You can use JWindow because is by default un_decorated, but you can setUndecorated() for JFrame/JDialog

另一种方法是

setDefaultCloseOperations

这篇关于如何在Java中的JFrame窗口中隐藏默认的最小/最大化和关闭按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 13:07