Example usage for java.awt Window setBackground

List of usage examples for java.awt Window setBackground

Introduction

In this page you can find the example usage for java.awt Window setBackground.

Prototype

@Override
public void setBackground(Color bgColor) 

Source Link

Document

Sets the background color of this window.

Usage

From source file:Filter3dTest.java

/**
 * Sets full screen mode and initiates and objects.
 *///from w  w w  .  j av  a  2  s .  c om
public void init() {
    screen = new ScreenManager();
    DisplayMode displayMode = screen.findFirstCompatibleMode(POSSIBLE_MODES);
    screen.setFullScreen(displayMode);

    Window window = screen.getFullScreenWindow();
    window.setFont(new Font("Dialog", Font.PLAIN, FONT_SIZE));
    window.setBackground(Color.blue);
    window.setForeground(Color.white);

    isRunning = true;
}