Home Java Example Java Swing Making a Frame Non Resizable in Java



Making a Frame Non Resizable in Java
Posted on: April 14, 2007 at 12:00 AM
This program illustrates you how to make a frame non resizable. It means, disabling the maximize button of the frame.

Making a Frame Non Resizable in Java

     

This program illustrates you how to make a frame non resizable. It means, disabling the maximize button of the frame.

The setResizable() method has been used to make the frame resizable or not. If you pass the boolean value false to the setResizable() method then the frame will be non-resizable otherwise frame will be resizable. The setResizable() is the method of the JFrame class which takes a boolean valued argument (true or false).

Screen shot for the result of the program:

Non Resizable Frame.

Here is the code of the program : 

import javax.swing.*;

public class SwingFrameNonResizable{
  public static void main(String[] args){
  JFrame frame = new JFrame("Non Resizable Frame");
  frame.setResizable(false);
  frame.setSize(400400);
  frame.setVisible(true);
  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  }
}

Download this example.

Related Tags for Making a Frame Non Resizable in Java:
cbuttonmakemethodsedviidsetmaxframeexampletoramexameitaxdesnotmaximizeliuseiminnoresizableasmtresmemeanhowprodescribexaxampseeatkishampleasattzxiscrssrithbesabablhatesiframesipleplprmiononon


More Tutorials from this section

Ask Questions?    Discuss: Making a Frame Non Resizable in Java   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.