1

私は、特定の色を示すラジオ ボタンを押すと、ページ全体がその色になるプログラムを動作させようとしています。ウィンドウは四角形で開き、4 つの異なるカラー オプションが表示されます。私の人生では、actionPerformed メソッドを機能させることはできません。これが私のコードです。どんな助けでも大歓迎です。

public class ColorPanel3 extends JPanel implements ActionListener {

Color darkBlue = new Color(5,41,186);
Color lightBlue = new Color(35,253,253);
Color darkRed = new Color(158,19,47);
Color lightRed = new Color(255,105,105);


JRadioButton lightRedButton = new JRadioButton("Light Red");
JRadioButton darkBlueButton = new JRadioButton("Dark Blue");
JRadioButton lightBlueButton = new JRadioButton("Light Blue");
JRadioButton darkRedButton = new JRadioButton("Dark Red");

public  ColorPanel3() {
    setName("Color Panel");
    setLayout(new GridLayout(1, 0, 0, 0));
    JPanel panel = new JPanel();
    add(panel);
    panel.setLayout(null);
    panel.setOpaque(true);

    lightRedButton.setHorizontalAlignment(SwingConstants.CENTER);
    lightRedButton.setBounds(0, 150, 150, 150);
    lightRedButton.setBackground(lightRed);
    panel.add(lightRedButton);


    darkBlueButton.setHorizontalAlignment(SwingConstants.CENTER);
    darkBlueButton.setBounds(0, 0, 150, 150);
    darkBlueButton.setBackground(darkBlue);
    panel.add(darkBlueButton);


    lightBlueButton.setHorizontalAlignment(SwingConstants.CENTER);
    lightBlueButton.setBounds(150, 0, 150, 150);
    lightBlueButton.setBackground(lightBlue);
    panel.add(lightBlueButton);

    darkRedButton.setHorizontalAlignment(SwingConstants.CENTER);
    darkRedButton.setBounds(150, 150, 150, 150);
    darkRedButton.setBackground(darkRed);

    panel.add(darkRedButton);

    ButtonGroup group = new ButtonGroup();   //creates a button group so that only one radio button may be pressed at a time.
    group.add(darkBlueButton);
    group.add(lightBlueButton);
    group.add(darkRedButton);
    group.add(lightRedButton);

    lightRedButton.addActionListener(actionListener);
    darkRedButton.addActionListener(actionListener);
    lightBlueButton.addActionListener(actionListener);
    darkBlueButton.addActionListener(actionListener);

}

ActionListener actionListener = new ActionListener(){
    public void actionPerformed (ActionEvent e){


        if(darkBlueButton.isSelected()){
            darkBlueButton.setBackground(darkBlue);
            lightBlueButton.setBackground(darkBlue);
            lightRedButton.setBackground(darkBlue);
            darkRedButton.setBackground(darkBlue);
        }

        if(lightBlueButton.isSelected()){
            darkBlueButton.setBackground(lightBlue);
            lightBlueButton.setBackground(lightBlue);
            lightRedButton.setBackground(lightBlue);
            darkRedButton.setBackground(lightBlue);
        }

        if(darkRedButton.isSelected()){
            darkBlueButton.setBackground(darkRed);
            lightBlueButton.setBackground(darkRed);
            lightRedButton.setBackground(darkRed);
            darkRedButton.setBackground(darkRed);
        }

        if(lightRedButton.isSelected()){
            darkBlueButton.setBackground(lightRed);
            lightBlueButton.setBackground(lightRed);
            lightRedButton.setBackground(lightRed);
            darkRedButton.setBackground(lightRed);
        }
    }       

そして、パネルを配置するための新しいクラスファイルを作成しました。これは機能しました。

public class ColorFrame{
public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.add(new ColorPanel3());
    frame.setVisible(true);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setTitle("Color Frame");

}

}
    };

}

最終編集:上記のコードは私が最終的に得たものです。

4

2 に答える 2

1

アクション リスナーは次のようになります。

ColorPanel3.setOpaque(true);
ColourPanel3.this.setBackground(yourcolor);

さらに、このコードをコード難読化コンテスト用に書いていない場合は、すべてのラジオ ボタンに異なるアクション リスナーを使用してください。

乾杯。

編集:パネルをに追加する必要がありますJFrame

于 2015-03-23T03:24:19.313 に答える
0

まず、次の行を削除します。

JRadioButton darkBlueButton = (JRadioButton) e.getSource();
JRadioButton lightBlueButton = (JRadioButton) e.getSource();
JRadioButton darkRedButton = (JRadioButton) e.getSource();
JRadioButton lightRedButton = (JRadioButton) e.getSource();

JRadioButtonで与えられた JRadioButton への参照を使用して4 つのインスタンスを作成していますe.getSource()。背景の色を変更したい場合、これは必要ありません。とにかく、これの効果はあなたが意図したものではないように感じます.

JRadioButtonを受け取るコンストラクターでオブジェクトを作成する場合String、テキストと同じアクション コマンドと共に、ラベル (つまり、Dark Blue) を付けます。getActionCommandクラスのメソッドを使用しActionEventて JPanel の色を決定することで、これを利用できます。

if (e.getActionCommand().equals("Dark Blue")) {
    ColorPanel3.this.setBackground(darkBlue);
}

ただし、色の変化を明確にするには、トップ パネルの透明度を設定する必要があります。

panel.setOpaque(false);
于 2015-03-23T03:11:56.280 に答える