Java JFrame Center sizeAndCenterFrame(JFrame aFrame, int aWidth, int aHeight)

Here you can find the source of sizeAndCenterFrame(JFrame aFrame, int aWidth, int aHeight)

Description

sizes the JFrame

License

Open Source License

Parameter

Parameter Description
aFrame which needs to be sized
aWidth defining the width of the window
aHeight defining the height of the window

Declaration

public static void sizeAndCenterFrame(JFrame aFrame, int aWidth, int aHeight) 

Method Source Code

//package com.java2s;
/*/* w  ww .j  a  v  a 2  s . co  m*/
 * CustomerSoft
 * Copyright (C) 2012  Michael Kohler <michaelkohler@linux.com>
    
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import javax.swing.JFrame;

public class Main {
    /**
     * sizes the JFrame
     * 
     * @param aFrame which needs to be sized
     * @param aWidth defining the width of the window
     * @param aHeight defining the height of the window
     */
    public static void sizeAndCenterFrame(JFrame aFrame, int aWidth, int aHeight) {
        aFrame.setSize(aWidth, aHeight);
        aFrame.setLocationRelativeTo(null);
    }
}

Related

  1. getCenterOfTheWindow(JFrame frame)
  2. placeInCenter(JFrame frame)
  3. posiToScreenCenter(JFrame frame)
  4. putWindowInCenter(JFrame window)
  5. SET_FRAME_CENTER(JFrame frame)