Home Java Example Java Awt Removing the title bar of the Frame in Java



Removing the title bar of the Frame in Java
Posted on: April 17, 2007 at 12:00 AM
In this section, you will learn about how to remove the titile bar of the frame in java.

Removing the title bar of the Frame in Java

     

Introducion

Here, you will learn how to display the frame or window without title bar in java. This type of the frame is mostly used to show the splash screen at starting of the application.

In this program, you can see that the method setUndecorated() has been used to hide the title bar of the frame or window. The frame is initially by default decorated. If you pass the boolean value true to the setUndecorated() method of the Frame class then the frame will look without the title bar otherwise the frame will be in the default format. The method setUndecorated() takes a boolean valued argument either true or false.

Here is the code of the program :

import java.awt.*;
import java.awt.event.*;

public class AwtWithoutTitleFrame{
public static void main(String[] args){
Frame frame = new Frame("Without Title Bar Frame");
Label lbl = 
new Label("Welcome in Roseindia.net Tutorial.",Label.CENTER);
frame.setUndecorated(true);
frame.add(lbl);
frame.setSize(400,400);
frame.setVisible(true);
frame.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent we){
Frame frame = (Frame)we.getSource();
frame.dispose();
  }
  });
  }
}

Download this example.

Related Tags for Removing the title bar of the Frame in Java:
javacstlapplicationiosedtypewindowscreendisplaythistarappframestartshowtitlewithtolearnramsheareilitbarlisplusepeartinasstamoutplayoscaosjispwithoutmehowppcatdosspeestaratislleaarrtvascrssthshoavstatiapdispframicaicaplmostndono


More Tutorials from this section

Ask Questions?    Discuss: Removing the title bar of the Frame 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.