-
Bug
-
Resolution: Fixed
-
P4
-
1.4.0
-
mantis
-
x86
-
windows_nt, windows_2000
Name: bsC130419 Date: 05/31/2001
java version "1.4.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta-b65)
Java HotSpot(TM) Client VM (build 1.4.0-beta-b65, mixed mode)
Frames can be programmatically maximized with
setExtendedState() but only after having being shown,
otherwise they are shown in normal state, as the sample
code shows.
The workaround is to first show the frame, then maximize it.
//--------------------------------------------
import javax.swing.*;
public class Maxim extends JFrame
{
public static void main(String args[])
{
new Maxim();
}
public Maxim()
{
setDefaultCloseOperation(EXIT_ON_CLOSE);
setExtendedState(MAXIMIZED_BOTH);
show();
}
}
//--------------------------------------------
(Review ID: 125293)
======================================================================
- duplicates
-
JDK-4527549 setExtendedState(MAXIMIZED_BOTH) doesn't work
-
- Closed
-