Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4464714

Windows: Frames cannot be shown initially maximized

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 1.4.2
    • 1.4.0
    • client-libs
    • 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)
      ======================================================================

            uwesunw Uwe Uwe (Inactive)
            bstrathesunw Bill Strathearn (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: