java改变按钮颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java改变按钮颜色相关的知识,希望对你有一定的参考价值。
比如说setBackground(backgroundColor);是设置背景颜色,我想让它再加一个功能改变背景颜色的同时也将按钮颜色改变,怎么办
为yellow、blue、red3个按钮添加actionlistener,当按钮点击时执行setBackground(backgroundColor),同时执行 按钮.setBackground(backgroundColor)即可,比如:JButton btnYellow = null;
JButton btnBlue = null;
JButton btnRed = null;
btnYellow.setActionCommand("yellow");
btnBlue.setActionCommand("blue");
btnRed.setActionCommand("red");
public void actionPerformed(ActionEvent e)
String command = event.getActionCommand();
if( "yellow".equals(command) )
setBackground(Color.yellow);
btnYellow.setBackground(Color.yellow);
else if( "blue".equals(command) )
setBackground(Color.blue);
btnBlue.setBackground(Color.blue);
else if( "red".equals(command) )
setBackground(Color.red);
btnRed.setBackground(Color.red);
写出了部分代码 参考技术A setForeground()
设置前景/字体颜色
setBackground()
设置背景颜色
具体实现:(假设按钮名称为:button)
设置红字:
button.setForeground(Color.red);
设置黑色背影:
button.setBackground(Color.black);
如何改变java按钮中的颜色?
我放上去一个按钮,想让他呈现黑色红字,具体应该怎么实现?
setForeground() 设置前景/字体颜色setBackground() 设置背景颜色
具体实现:(假设按钮名称为:button)
设置红字:
button.setForeground(Color.red);
设置黑色背影:
button.setBackground(Color.black); 参考技术A button.setForeground(java.awt.Color.white);
button.setBackground(java.awt.Color.black); 参考技术B setForeground(java.awt.Color);
setBackground(java.awt.Color);
以上是关于java改变按钮颜色的主要内容,如果未能解决你的问题,请参考以下文章