Java JFrame fullScreenUsingMaximise(JFrame w)

Here you can find the source of fullScreenUsingMaximise(JFrame w)

Description

full Screen Using Maximise

License

Apache License

Declaration

private static void fullScreenUsingMaximise(JFrame w) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.awt.Frame;

import javax.swing.JFrame;

public class Main {
    private static void fullScreenUsingMaximise(JFrame w) {
        w.setExtendedState(Frame.MAXIMIZED_BOTH);
        w.setAlwaysOnTop(true);//from   w w  w  . ja v a2 s  .co  m
    }
}

Related

  1. findFileSave(JFrame frame, String ext, String desc)
  2. findJFrame(Component c)
  3. findJFrame(Component myComponent)
  4. fitToDesktop(final JFrame frame)
  5. fullScreen(JFrame window)
  6. fullScreenWithAPI(JFrame w)
  7. getFileSelection(JFrame parent, boolean onlyDirectories, String startingDir)
  8. getJFrame(Component cmp)
  9. getjFrame(int width, int height)