java swing 颜色_Java Swing按钮颜色

这里有一个问题与几个答案与闪烁组件相关的。

附录:你可以在这篇文章中学到更多。如何使用按钮..特别是,您可以使用setForeground()更改按钮文本的颜色,但相应的setBackground()在某些平台上读得不好。使用Border是一种选择;下面显示的彩色面板是另一种。package overflow;import java.awt.Color;import java.awt.EventQueue;import java.awt.GridLayout;import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;import java.util.ArrayList;import java.util.List;import java.util.Random;import javax.swing.JButton;

import javax.swing.JFrame;import javax.swing.JPanel;import javax.swing.Timer;public class ButtonTest extends JPanel implements ActionListener {

private static final int N = 4;

private static final Random rnd = new Random();

private final Timer timer = new Timer(1000, this);

private final List panels = new ArrayList();

public ButtonTest() {

this.setLayout(new GridLayout(N, N, N, N));

for (int i = 0; i 

ButtonPanel bp = new ButtonPanel(i);

panels.add(bp);

this.add(bp);

}

}

@Override

public void actionPerformed(ActionEvent e) {

for (JPanel p : panels) {

p.setBackground(new Color(rnd.nextInt()));

}

}

private static class ButtonPanel extends JPanel {

public ButtonPanel(int i) {

this.setBackground(new Color(rnd.nextInt()));

this.add(new JButton("Button " + String.valueOf(i)));

}

}

public static void main(String[] args) {

EventQueue.invokeLater(new Runnable() {

@Override

public void run() {

JFrame f = new JFrame("ButtonTest");

f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

ButtonTest bt = new ButtonTest();

f.add(bt);

f.pack();

f.setLocationRelativeTo(null);

f.setVisible(true);

bt.timer.start();

}

});

}}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值