0

JAVA でプログラミングしており、OS は MAC です。JButton の setForeground または setBackground を試みていますが、進行していません。私が追加しました:

button.setOpaque(true); 
button.setBorderPainted(false);

しかし、それでも変化はありません!JButton の色を変更するにはどうすればよいですか?

ここに私のコードがあります:

    public class New_button extends JButton{
    String up = new String("<html><font color=BLACK>^<size=50></font></html>");
    String down = new String("<html><font color=BLACK>v<size=50></font></html>");
    double value;
    int foldChange;

    public New_button(double val, int foldChan) {
        value = val;
        foldChange = foldChan;
        this.setSize(30, 30);
        this.setFont(this.getFont().deriveFont(50.0f));
        this.setBorder(null);
    }

    public void changeColor(double value){
         try {
                UIManager.setLookAndFeel( UIManager.getCrossPlatformLookAndFeelClassName() );
             } catch (Exception e) {
                        e.printStackTrace();
             }
        if(value > 0.05){
            this.setForeground(Color.YELLOW);
            this.setOpaque(true);
            this.setBorderPainted(false);

        }
        else{
            this.setForeground(Color.RED);
            this.setOpaque(true);
            this.setBorderPainted(false);
        }
    }

    public void changeLable(int foldChange){
        if(foldChange == 1)
            this.setText(up);
        else
            this.setText(down);
    }    
}

ありがとう

4

1 に答える 1

0

この方法で確認してください:

JButton button = new JButton("test");
button.setBackground(Color.RED);
button.setOpaque(true);

ソース

于 2013-09-09T13:09:37.817 に答える