0

JLabel の上に JColorChooser ダイアログ ボックスを作成しようとしています。これにより、JLabel のテキストの色は、ユーザーが JColorChooser で選択した色に変わります。ここに私がこれまでに持っているものがありますが、それは私のためにコンパイルされていません。

import javax.swing.*;
import java.awt.*;
import javax.swing.event.*;

public class JColorChooserExample extends JFrame
{       
private JColorChooser colorChooser;                                // instance variables          
private JLabel banner;

public JColorChooserExample()                                             // constructor
{
    add(banner = new JLabel("Welcome to the Tutorial Zone!", JLabel.CENTER), BorderLayout.NORTH);
  banner.setForeground(Color.BLACK);
    add(colorChooser = new JColorChooser(banner.getForeground()), BorderLayout.SOUTH);

    ListenerClass listener = new ListenerClass();
    colorChooser.addChangeListener(listener);
}

public static void main(String[] args)
{       
    JColorChooserExample frame = new JColorChooserExample();   // new frame object 
    frame.setTitle("JColorChooser Example");                   // set frame title
    frame.pack();                                                             // sizes the frame so components fit frame  
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);      // ends program on frame closing
    frame.setLocationRelativeTo(null);                                // centre frame
    frame.setVisible(true);                                    // make frame visible
}

private class ListenerClass implements ChangeListener
{   
    public void stateChanged(ChangeEvent e) 
    {
        Color newColor = colorChooser.getColor();
        banner.setForeground(newColor);
    }
}
}
4

1 に答える 1

1

ChangeListenerは、それ自体で直接登録するJColorChooserColorSelectionModelではなく、 で登録する必要がありJColorChooserます。

colorChooser.getSelectionModel().addChangeListener(listener);

カラー チューザーの使用方法

于 2013-04-05T03:30:20.557 に答える