Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将我的框架自动设置为全屏。这是可能的,如果是的话怎么办?
谢谢
如果你想最大化你的框架使用:
frame.setExtendedState(Frame.MAXIMIZED_BOTH);
如果您希望框架没有装饰(真正的全屏),也可以使用:
frame.setUndecorated(true);