java jbutton 禁用_java – 如何禁用JButton在禁用时变灰?

您只需将按钮的禁用图标设置为与按钮图标相同的值即可.看这个例子:

在左侧是一个按钮,我在其中设置了icon和disabledIcon.在右边我只设置了图标:

import java.awt.BorderLayout;

import java.net.MalformedURLException;

import java.net.URL;

import javax.swing.ImageIcon;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.SwingUtilities;

public class TestDisabledButtons {

public static final String CARD_URL = "http://assets0.wordansassets.com/wvc-1345850020/wordansfiles/images/2012/8/24/156256/156256_340.jpg";

protected void createAndShowGUI() throws MalformedURLException {

JFrame frame = new JFrame("Test button");

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

ImageIcon imageIcon = new ImageIcon(new URL(CARD_URL));

JButton button = new JButton(imageIcon);

JButton button2 = new JButton(imageIcon);

button.setDisabledIcon(imageIcon);

button.setEnabled(false);

button2.setEnabled(false);

frame.add(button, BorderLayout.WEST);

frame.add(button2, BorderLayout.EAST);

frame.pack();

frame.setVisible(true);

}

public static void main(String[] args) {

SwingUtilities.invokeLater(new Runnable() {

@Override

public void run() {

try {

new TestDisabledButtons().createAndShowGUI();

} catch (MalformedURLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

});

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值