Je suis en train de constituer un moyen rapide et sale de l'animation à l'aide de swing. Je voudrais la fenêtre pour être maximisée. Comment puis-je le faire?
Réponses
Trop de publicités?
VonC
Points
414372
Quelque chose comme this.setExtendedState(this.getExtendedState() | this.MAXIMIZED_BOTH);
import java.awt.*;
import javax.swing.*;
public class Test extends JFrame
{
public Test()
{
GraphicsEnvironment env =
GraphicsEnvironment.getLocalGraphicsEnvironment();
this.setMaximizedBounds(env.getMaximumWindowBounds());
this.setExtendedState(this.getExtendedState() | this.MAXIMIZED_BOTH);
}
public static void main(String[] args)
{
JFrame.setDefaultLookAndFeelDecorated(true);
Test t = new Test();
t.setVisible(true);
}
}
user54579
Points
1404
Zach Scrivena
Points
15052
Que diriez - JFrame.setExtendedState(JFrame.MAXIMIZED_BOTH)
?
Greg Reynolds
Points
3675