In this section, you will learn how to set the bounds for a maximized frame. This means to fix the size for the frame after maximizing it.
This program sets the bounds for the maximized frame using setMaximizedBounds() method of the JFrame class. There has been shown the images below for the illustration:
Restored Frame:

Maximized Frame:

Code description:
setMaximizedBounds():
This is the method of the JFrame class sets the bounds for a
maximized frame. The method takes the object of Rectangle class to set the size
of frame. Constructor of the Ractangle class takes four argument in
sequence: row of the screen, column of the screen, width of the frame and last
is the height of the frame.
Here is the code of the program:
import java.awt.*;
|
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.
Ask Questions? Discuss: Setting Bounds for a maximized frame
Post your Comment