Example usage for javax.swing JList setSelectionBackground

List of usage examples for javax.swing JList setSelectionBackground

Introduction

In this page you can find the example usage for javax.swing JList setSelectionBackground.

Prototype

@BeanProperty(visualUpdate = true, description = "The background color of selected cells.")
public void setSelectionBackground(Color selectionBackground) 

Source Link

Document

Sets the color used to draw the background of selected items, which cell renderers can use fill selected cells.

Usage

From source file:Main.java

public static void main(final String args[]) {
    String labels[] = { "A", "B", "C", "D", "E" };
    JFrame frame = new JFrame("Sizing Samples");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JList jlist1 = new JList(labels);
    jlist1.setVisibleRowCount(4);/*w  w w.  ja va  2  s .  c om*/
    JScrollPane scrollPane1 = new JScrollPane(jlist1);
    frame.add(scrollPane1, BorderLayout.NORTH);

    jlist1.setSelectionBackground(Color.RED);

    frame.setSize(300, 350);
    frame.setVisible(true);
}