如何创建按钮,如图所示?

时间:2015-11-01 14:10:13

标签: java swing jpanel jbutton

enter image description here

如何创建动态组件,如图所示?组件映像可以在运行时更改。 组件边框和背景颜色应在运行时更改。

1 个答案:

答案 0 :(得分:0)

您可以创建一个按钮,如下所示

JButton button = new JButton();

try {
    Image img = ImageIO.read(getClass().getResource("resources/water.bmp"));
    button.setIcon(new ImageIcon(img));
} catch (IOException ex) {
    //catch exceptions
}

你可以打电话

button.setIcon(new ImageIcon(img));

在运行时更改按钮图像。

你可以打电话

button.setBackground()

在运行时更改背景。

有关详细信息,请查看JButton Documentation