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

Contents of frame are not layed out properly on maximize

XMLWordPrintable

    • b02
    • x86
    • windows_xp
    • Verified

      FULL PRODUCT VERSION :
      java version "1.5.0_04"

      ADDITIONAL OS VERSION INFORMATION :
      Microsoft Windows XP [Version 5.1.2600]

      A DESCRIPTION OF THE PROBLEM :
      In some circumstances, when a Frame is maximize, the contents are not validated, so they stay in the same position and size as prior to the maximizing.

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      1. Create a JFrame with some content
      2. Right click on the title bar.
      3. Select 'Size' from the menu
      4. Left click in the contents of the window
      5. Maximize the window.

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      The window should maximize, and the contents should be layed out according to the layout manager of the window.
      ACTUAL -
      The content location and size is not changed.

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.awt.*;
      import javax.swing.*;
      import java.util.*;

      class test
      {
      public static void main(String[] args) {
              Frame frame = new Frame("Test Frame");

              JPanel panel = new JPanel();
              panel.setBackground(Color.RED);

      JTextField jf = new JTextField (10);
      JTextField jf1 = new JTextField (10);
      JButton jb = new JButton("Test");
      panel.add(jf);
      panel.add(jf1);
      panel.add(jb);
              frame.add(panel);

              frame.setSize(400, 400);
              frame.setVisible(true);
      }
      }
      ---------- END SOURCE ----------

            anthony Anthony Petrov (Inactive)
            ndcosta Nelson Dcosta (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: